From fc4d1cbcb7039face9fb12660fb0316ac8b6452e Mon Sep 17 00:00:00 2001 From: Sanket Saurav Date: Sat, 19 Oct 2013 22:44:35 +0530 Subject: [PATCH] Fixed typo. --- docs/content/tutorial/step_07.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index aa453f02d82b..cb5f5f9ccba5 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.