summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--book/src/main/scalatex/indepth/AdvancedTechniques.scalatex4
-rw-r--r--book/src/main/scalatex/indepth/JavaAPIs.scalatex2
2 files changed, 3 insertions, 3 deletions
diff --git a/book/src/main/scalatex/indepth/AdvancedTechniques.scalatex b/book/src/main/scalatex/indepth/AdvancedTechniques.scalatex
index 4460a1d..feeb01f 100644
--- a/book/src/main/scalatex/indepth/AdvancedTechniques.scalatex
+++ b/book/src/main/scalatex/indepth/AdvancedTechniques.scalatex
@@ -24,9 +24,9 @@
@ul
@li
- @b{Discrete}: Handling of first-class event-streams like in @link("RxJS", "https://github.com/Reactive-Extensions/RxJS")
+ @b{Discrete}: Handling of first-class event-streams like in @lnk("RxJS", "https://github.com/Reactive-Extensions/RxJS")
@li
- @b{Continuous}: Handling of first-class signals, like in @link("Elm", "http://elm-lang.org/learn/What-is-FRP.elm")
+ @b{Continuous}: Handling of first-class signals, like in @lnk("Elm", "http://elm-lang.org/learn/What-is-FRP.elm")
@sect{Why FRP}
@p
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}