Skip to content

Commit 0409e72

Browse files
committed
Merge pull request #745 from mbeaudru/patch-1
Update tutorial.step_02.md
2 parents 6e0fd46 + 9f63f1b commit 0409e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.docs/angular-meteor/client/content/tutorials/angular1/steps/tutorial.step_02.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The data model is now instantiated within the `PartiesListCtrl` controller.
3333

3434
Although the controller is not yet doing very much, it plays a crucial role. By providing context for our data model, the controller allows us to establish data-binding between the model and the view. We connected the dots between the presentation, the data, and the logic components as follows:
3535

36-
* The ngController directive, located on the `body` tag, references the name of our controller, `PartiesListCtrl` (located in the JavaScript file `app.js`).
36+
* The ngController directive, located on the `div` tag, references the name of our controller, `PartiesListCtrl` (located in the JavaScript file `app.js`).
3737
* The `PartiesListCtrl` controller attaches the party data to the `$scope` that was injected into our controller function. This controller scope is available to all bindings located within the `div ng-controller="PartiesListCtrl">` tag.
3838

3939
# ng-annotate and .ng.js

0 commit comments

Comments
 (0)