aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial/step_00.ngdoc
diff options
context:
space:
mode:
authorunknown2012-04-25 19:33:04 +0200
committerVojta Jina2012-06-04 18:46:09 -0700
commita57141fd1d24962982e512c65e0e16d9b5edefe4 (patch)
treed078bf4656db4b5c75f966933a285332a18546d6 /docs/content/tutorial/step_00.ngdoc
parent1904596e0c2330299e92f092bd7a6ceca8e97c30 (diff)
downloadangular.js-a57141fd1d24962982e512c65e0e16d9b5edefe4.tar.bz2
docs(guide): correct couple of typos
Diffstat (limited to 'docs/content/tutorial/step_00.ngdoc')
-rw-r--r--docs/content/tutorial/step_00.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc
index b6a367e9..92f60991 100644
--- a/docs/content/tutorial/step_00.ngdoc
+++ b/docs/content/tutorial/step_00.ngdoc
@@ -204,7 +204,7 @@ being the element on which the `ngApp` directive was defined.
evaluated by Angular in the context of the current model scope, rather than within the scope of
the global context (`window`).
- As expected, once this template is processed by Angular, the html page will contains text:
+ As expected, once this template is processed by Angular, the html page contains the text:
"Nothing here yet!".
## Bootstrapping AngularJS apps
@@ -226,7 +226,7 @@ There are 3 important things that happen during the app bootstrap:
Once an application is bootstrapped, it will then wait for incoming browser events (such as mouse
-click, key press or incoming HTTP response) that might change the model. Once such event occurs,
+click, key press or incoming HTTP response) that might change the model. Once such an event occurs,
Angular detects if it caused any model changes and if changes are found, Angular will reflect them
in the view by updating all of the affected bindings.