aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/tutorial
diff options
context:
space:
mode:
authorJosh McAdams2013-10-14 11:57:08 -0700
committerPete Bacon Darwin2013-10-24 20:43:32 +0100
commit1c621bdf232941dcc008fd08aeefda3f09e0ab91 (patch)
tree33bd924528d416c05c981382322c2db1aeebae77 /docs/content/tutorial
parentbf29cbc53f585c4dd2455b57ebfa18063dc17f6a (diff)
downloadangular.js-1c621bdf232941dcc008fd08aeefda3f09e0ab91.tar.bz2
docs(tutorial/step-07): fix typo
Closes #4410
Diffstat (limited to 'docs/content/tutorial')
-rw-r--r--docs/content/tutorial/step_07.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc
index aa453f02..cb5f5f9c 100644
--- a/docs/content/tutorial/step_07.ngdoc
+++ b/docs/content/tutorial/step_07.ngdoc
@@ -165,7 +165,7 @@ phonecatControllers.controller('PhoneDetailCtrl', ['$scope', '$routeParams',
Again, note that we created a new module called `phonecatControllers`. For small AngularJS applications,
it's common to create just one module for all of your controllers if there are just a few. For larger apps,
-you will rpobbaly want to create separate modules for each major feature of your app.
+you will probably want to create separate modules for each major feature of your app.
Because our example app is relatively small, we'll add all of our controllers to this module.