From d310e9ff3c7c31296e5a1429a42158d98e6fd43c Mon Sep 17 00:00:00 2001 From: Samuel Messing Date: Sun, 20 Oct 2013 14:04:07 -0400 Subject: [PATCH] Fixing a typo in step_07.ngdoc s/rpobbaly/probably/g --- 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.