summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Timmerman <granttimmerman@gmail.com>2015-04-25 14:20:26 -0700
committerGrant Timmerman <granttimmerman@gmail.com>2015-04-25 14:20:26 -0700
commit7d34659775c2446faf6d995c0b1d75a29d400f48 (patch)
tree676f050de98fa26b7079f50f756a2182cfcddfa6
parentbad25feee52fdf644dc71dcb2625bdd236dac834 (diff)
downloadhands-on-scala-js-7d34659775c2446faf6d995c0b1d75a29d400f48.tar.gz
hands-on-scala-js-7d34659775c2446faf6d995c0b1d75a29d400f48.tar.bz2
hands-on-scala-js-7d34659775c2446faf6d995c0b1d75a29d400f48.zip
Fix close paren.
-rw-r--r--book/src/main/scalatex/indepth/JavaAPIs.scalatex2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/main/scalatex/indepth/JavaAPIs.scalatex b/book/src/main/scalatex/indepth/JavaAPIs.scalatex
index eb09ff9..baddd25 100644
--- a/book/src/main/scalatex/indepth/JavaAPIs.scalatex
+++ b/book/src/main/scalatex/indepth/JavaAPIs.scalatex
@@ -3,7 +3,7 @@
@p
Below is a list of classes from the Java Standard Library that are available from Scala.js. In general, much of @hl.scala{java.lang}, and parts of @hl.scala{java.io}, @hl.scala{java.util} and @hl.scala{java.net} have been ported over. This means that all these classes are available for use in Scala.js applications despite being part of the Java standard library.
@p
- There are many reasons you may want to port a Java class to Scala.js: you want to use it directly, you may be trying to port a library which uses it. In general, we haven't been porting things "for fun", and obscure classes like @hl.scala{org.omg.corba} will likely never be ported: we've been porting things as the need arises in order to support libraries (e.g. @lnk("Scala.Rx", "https://github.com/lihaoyi/scala.rx") that need them.
+ There are many reasons you may want to port a Java class to Scala.js: you want to use it directly, you may be trying to port a library which uses it. In general, we haven't been porting things "for fun", and obscure classes like @hl.scala{org.omg.corba} will likely never be ported: we've been porting things as the need arises in order to support libraries (e.g. @lnk("Scala.Rx", "https://github.com/lihaoyi/scala.rx") that need them).
@sect{Available Java APIs}