summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlncrnt <jlncrnt@users.noreply.github.com>2016-11-11 16:01:26 +0100
committerGitHub <noreply@github.com>2016-11-11 16:01:26 +0100
commit79be25b87d16bb5842b81d89da68b2565f9b85dc (patch)
tree5402369c59c7b7ee2ea5a3f45f217f2177a96e69
parentff690d141cc776a62b9f1e23007cf9c5b78cd893 (diff)
downloadhands-on-scala-js-79be25b87d16bb5842b81d89da68b2565f9b85dc.tar.gz
hands-on-scala-js-79be25b87d16bb5842b81d89da68b2565f9b85dc.tar.bz2
hands-on-scala-js-79be25b87d16bb5842b81d89da68b2565f9b85dc.zip
Typo
"form" mispelled
-rw-r--r--book/src/main/scalatex/handson/WebPage.scalatex2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/main/scalatex/handson/WebPage.scalatex b/book/src/main/scalatex/handson/WebPage.scalatex
index cc232f2..1f3f828 100644
--- a/book/src/main/scalatex/handson/WebPage.scalatex
+++ b/book/src/main/scalatex/handson/WebPage.scalatex
@@ -4,7 +4,7 @@
Most web applications aren't neat little games which live on a single canvas: they are large, structured HTML pages, which involve displaying data (whether from the user or from the web) in multiple ways, while allowing the user to make changes to the data that can be saved back to whatever remote web-service/database it came from.
@p
- At this point, you are already competent at using Scala.js to make basic, self-contained canvas applications. In this chapter, we will cover how to use Scala.js to build the sort of interactive-web-pages that make up the bulk of the modern-day internet. We'll cover how to use powerful libraries that turn front-end development form the typical fragile-mess into a structured, robust piece of software.
+ At this point, you are already competent at using Scala.js to make basic, self-contained canvas applications. In this chapter, we will cover how to use Scala.js to build the sort of interactive-web-pages that make up the bulk of the modern-day internet. We'll cover how to use powerful libraries that turn front-end development from the typical fragile-mess into a structured, robust piece of software.
@val webpage = wd/'examples/'demos/'src/'main/'scala/'webpage