4
4
5
5
# Hello World!
6
6
7
- A great way for you to get started with `angular` is to create the tradtional
7
+ A great way for you to get started with AngularJS is to create the tradtional
8
8
"Hello World!" app:
9
9
10
10
1. In your favorite text editor, create an HTML file
@@ -27,21 +27,21 @@ Now let's take a closer look at that code, and see what is going on behind
27
27
the scenes.
28
28
29
29
The first line of interest defines the `ng` namespace, which makes
30
- `angular` work across all browsers (especially important for IE):
30
+ AngularJS work across all browsers (especially important for IE):
31
31
32
32
<pre>
33
33
<html xmlns:ng="http://angularjs.org">
34
34
</pre>
35
35
36
- The next line downloads the ` angular` script, and instructs ` angular` to process
36
+ The next line downloads the angular script, and instructs angular to process
37
37
the entire HTML page when it is loaded:
38
38
39
39
<pre>
40
40
<script type="text/javascript" src="http://code.angularjs.org/angular-?.?.?.min.js"
41
41
ng:autobind></script>
42
42
</pre>
43
43
44
- (For details on what happens when ` angular` processes an HTML page,
44
+ (For details on what happens when angular processes an HTML page,
45
45
see {@link guide/dev_guide.bootstrap Bootstrap}.)
46
46
47
47
Finally, this line in the `<body>` of the page is the template that describes
@@ -54,16 +54,16 @@ how to display our greeting in the UI:
54
54
Note the use of the double curly brace markup (`{{ }}`) to bind the expression to
55
55
the greeting text. Here the expression is the string literal 'World'.
56
56
57
- Next let's look at a more interesting example, that uses `angular` to
57
+ Next let's look at a more interesting example, that uses AngularJS to
58
58
bind a dynamic expression to our greeting text.
59
59
60
- # Hello <angular/> World!
60
+ # Hello AngularJS World!
61
61
62
- This example demonstrates ` angular` 's two-way data binding:
62
+ This example demonstrates angular's two-way data binding:
63
63
64
64
1. Edit the HTML file you created in the "Hello World!" example above.
65
65
2. Replace the contents of `<body>` with the code from the __Source__ box below.
66
- 3. Refresh your browswer window.
66
+ 3. Refresh your browser window.
67
67
68
68
<doc:example>
69
69
<doc:source>
@@ -86,7 +86,7 @@ called `yourname`.
86
86
* You did not need to explicitly register an event listener or define an event handler for events!
87
87
88
88
Now try typing your name into the input box, and notice the immediate change to
89
- the displayed greeting. This demonstrates the concept of ` angular` 's
89
+ the displayed greeting. This demonstrates the concept of angular's
90
90
{@link guide/dev_guide.templates.databinding bi-directional data binding}. Any changes to the input
91
91
field are immediately
92
92
reflected in the model (one direction), and any changes to the model are
@@ -135,8 +135,11 @@ In addition, angular comes with a set of Services, which have the following prop
135
135
136
136
# Where To Go Next
137
137
138
- * For explanations and examples of the angular concepts presented on this page, see the {@link
139
- guide/index Developer Guide} .
138
+ * If you like what you've learned so far, you should definitely check out our awesome {@link
139
+ tutorial/ Tutorial}, which walk you through the process of building real apps with AngularJS .
140
140
141
- * For additional hands-on examples of using `angular`, including more source code that you can
142
- copy and paste into your own pages, take a look through the `angular` {@link cookbook/ Cookbook}.
141
+ * For further explanations and examples of the AngularJS concepts presented on this page, see the
142
+ {@link guide/index Developer Guide}.
143
+
144
+ * For additional hands-on examples of using AngularJS, including more source code that you can
145
+ copy and paste into your own pages, take a look through the {@link cookbook/ Cookbook}.
0 commit comments