Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 248b036

Browse files
committed
docs(tutorial/0 - Bootstrapping): clarify where the callback is registered
Closes #11270
1 parent 3fd4874 commit 248b036

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/content/tutorial/step_00.ngdoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ __`app/index.html`:__
6565

6666
## What is the code doing?
6767

68-
* `ng-app` directive:
68+
**`ng-app` directive:**
6969

7070
<html ng-app>
7171

@@ -77,17 +77,17 @@ __`app/index.html`:__
7777
This gives application developers the freedom to tell Angular if the entire html page or only a
7878
portion of it should be treated as the Angular application.
7979

80-
* AngularJS script tag:
80+
**AngularJS script tag:**
8181

8282
<script src="bower_components/angular/angular.js">
8383

84-
This code downloads the `angular.js` script and registers a callback that will be executed by the
84+
This code downloads the `angular.js` script which registers a callback that will be executed by the
8585
browser when the containing HTML page is fully downloaded. When the callback is executed, Angular
8686
looks for the {@link ng.directive:ngApp ngApp} directive. If
8787
Angular finds the directive, it will bootstrap the application with the root of the application DOM
8888
being the element on which the `ngApp` directive was defined.
8989

90-
* Double-curly binding with an expression:
90+
**Double-curly binding with an expression:**
9191

9292
Nothing here {{'yet' + '!'}}
9393

0 commit comments

Comments
 (0)