From bdef462cccd4e6b5be770929c30a941e314ffc36 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 29 Jul 2011 12:56:50 -0700 Subject: doc(started): fixing up the doc and adding link to the tutorial --- docs/content/misc/started.ngdoc | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) (limited to 'docs/content/misc') diff --git a/docs/content/misc/started.ngdoc b/docs/content/misc/started.ngdoc index 7ea8015c..9566adcf 100644 --- a/docs/content/misc/started.ngdoc +++ b/docs/content/misc/started.ngdoc @@ -4,7 +4,7 @@ # Hello World! -A great way for you to get started with `angular` is to create the tradtional +A great way for you to get started with AngularJS is to create the tradtional "Hello World!" app: 1. In your favorite text editor, create an HTML file @@ -27,13 +27,13 @@ Now let's take a closer look at that code, and see what is going on behind the scenes. The first line of interest defines the `ng` namespace, which makes -`angular` work across all browsers (especially important for IE): +AngularJS work across all browsers (especially important for IE):
-The next line downloads the `angular` script, and instructs `angular` to process
+The next line downloads the angular script, and instructs angular to process
the entire HTML page when it is loaded:
@@ -41,7 +41,7 @@ the entire HTML page when it is loaded: ng:autobind>-(For details on what happens when `angular` processes an HTML page, +(For details on what happens when angular processes an HTML page, see {@link guide/dev_guide.bootstrap Bootstrap}.) Finally, this line in the `` of the page is the template that describes @@ -54,16 +54,16 @@ how to display our greeting in the UI: Note the use of the double curly brace markup (`{{ }}`) to bind the expression to the greeting text. Here the expression is the string literal 'World'. -Next let's look at a more interesting example, that uses `angular` to +Next let's look at a more interesting example, that uses AngularJS to bind a dynamic expression to our greeting text. -# Hello