From 8d969ab121223c32bb41d26724e5f814bc0bef16 Mon Sep 17 00:00:00 2001 From: Gordon McCreight Date: Mon, 15 Sep 2014 14:33:18 -0700 Subject: [PATCH] docs(sample): fix a drift from the code --- sample/app/contacts/contacts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/app/contacts/contacts.js b/sample/app/contacts/contacts.js index 5a634a8f6..cc66b3e53 100644 --- a/sample/app/contacts/contacts.js +++ b/sample/app/contacts/contacts.js @@ -92,7 +92,7 @@ angular.module('uiRouterSample.contacts', [ // between 1 and 4. // Since this state is also a child of 'contacts' its url is appended as well. - // So its url will end up being '/contacts/{contactId:[0-9]{1,8}}'. When the + // So its url will end up being '/contacts/{contactId:[0-9]{1,4}}'. When the // url becomes something like '/contacts/42' then this state becomes active // and the $stateParams object becomes { contactId: 42 }. url: '/{contactId:[0-9]{1,4}}',