summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Doeraene <sjrdoeraene@gmail.com>2016-11-11 16:28:21 +0100
committerGitHub <noreply@github.com>2016-11-11 16:28:21 +0100
commitfb151ad1a2602b548594eb954eed00679accbf48 (patch)
tree5402369c59c7b7ee2ea5a3f45f217f2177a96e69
parentff690d141cc776a62b9f1e23007cf9c5b78cd893 (diff)
parent79be25b87d16bb5842b81d89da68b2565f9b85dc (diff)
downloadhands-on-scala-js-fb151ad1a2602b548594eb954eed00679accbf48.tar.gz
hands-on-scala-js-fb151ad1a2602b548594eb954eed00679accbf48.tar.bz2
hands-on-scala-js-fb151ad1a2602b548594eb954eed00679accbf48.zip
Merge pull request #41 from jlncrnt/patch-1HEADmaster
Typo, "from" misspelled
-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