From 07c3c1cfac324be7ce36c42c672dc0cf2ab4cb93 Mon Sep 17 00:00:00 2001 From: Jamie Krug Date: Wed, 30 Apr 2014 11:27:53 -0400 Subject: [PATCH] Update step_07.ngdoc to fix typo in route pattern One instance of `/phones/:phoneId` erroneously had a singular version, `/phone/:phoneId`, which does not match what was actually used in the code. --- 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 db22fb75e7f0..f78346f9b928 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -247,7 +247,7 @@ Our application routes are defined as follows: controller. * `when('/phones/:phoneId')`: The phone details view will be shown when the URL hash fragment - matches '/phone/:phoneId', where `:phoneId` is a variable part of the URL. To construct the phone + matches '/phones/:phoneId', where `:phoneId` is a variable part of the URL. To construct the phone details view, Angular will use the `phone-detail.html` template and the `PhoneDetailCtrl` controller.