Skip to content

Commit bdef462

Browse files
committed
doc(started): fixing up the doc and adding link to the tutorial
1 parent a79231d commit bdef462

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

docs/content/misc/started.ngdoc

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Hello World!
66

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
88
"Hello World!" app:
99

1010
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
2727
the scenes.
2828

2929
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):
3131

3232
<pre>
3333
<html xmlns:ng="http://angularjs.org">
3434
</pre>
3535

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
3737
the entire HTML page when it is loaded:
3838

3939
<pre>
4040
<script type="text/javascript" src="http://code.angularjs.org/angular-?.?.?.min.js"
4141
ng:autobind></script>
4242
</pre>
4343

44-
(For details on what happens when `angular` processes an HTML page,
44+
(For details on what happens when angular processes an HTML page,
4545
see {@link guide/dev_guide.bootstrap Bootstrap}.)
4646

4747
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:
5454
Note the use of the double curly brace markup (`{{ }}`) to bind the expression to
5555
the greeting text. Here the expression is the string literal 'World'.
5656

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
5858
bind a dynamic expression to our greeting text.
5959

60-
# Hello <angular/> World!
60+
# Hello AngularJS World!
6161

62-
This example demonstrates `angular`'s two-way data binding:
62+
This example demonstrates angular's two-way data binding:
6363

6464
1. Edit the HTML file you created in the "Hello World!" example above.
6565
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.
6767

6868
<doc:example>
6969
<doc:source>
@@ -86,7 +86,7 @@ called `yourname`.
8686
* You did not need to explicitly register an event listener or define an event handler for events!
8787

8888
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
9090
{@link guide/dev_guide.templates.databinding bi-directional data binding}. Any changes to the input
9191
field are immediately
9292
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
135135

136136
# Where To Go Next
137137

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.
140140

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

Comments
 (0)