aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorIwona Lalik2013-11-28 10:24:41 +0100
committerPete Bacon Darwin2013-12-04 22:36:42 +0000
commitb38a2287f239f6b31a7476e6767bc66dafb2a693 (patch)
tree8e96f9153f7f28021078f4e7f0a8bb7d3bc381d7 /docs/content/tutorial
parent1e7675ad4c6dd472755be65fb21c1788afec5856 (diff)
downloadangular.js-b38a2287f239f6b31a7476e6767bc66dafb2a693.tar.bz2
docs(tutorial/step-3): add module to `ng-app` directive in code sample
Closes #5184
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_03.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_03.ngdoc b/docs/content/tutorial/step_03.ngdoc
index a26a43a1..618d2e06 100644
--- a/docs/content/tutorial/step_03.ngdoc
+++ b/docs/content/tutorial/step_03.ngdoc
@@ -154,7 +154,7 @@ really is that easy to set up any functional, readable, end-to-end test.
`ngController` declaration to the HTML element because it is the common parent of both the body
and title elements:
- <html ng-app ng-controller="PhoneListCtrl">
+ <html ng-app="phonecatApp" ng-controller="PhoneListCtrl">
Be sure to __remove__ the `ng-controller` declaration from the body element.