From b06c58f37523f257673c054cfefba8efb8ad4325 Mon Sep 17 00:00:00 2001 From: Wes Alvaro Date: Wed, 7 May 2014 13:01:19 -0700 Subject: [PATCH] docs(ngRoute): $routeParams is Object. --- src/ngRoute/routeParams.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngRoute/routeParams.js b/src/ngRoute/routeParams.js index c9c4a48f85cc..7e8e0d01ccbc 100644 --- a/src/ngRoute/routeParams.js +++ b/src/ngRoute/routeParams.js @@ -33,7 +33,7 @@ ngRouteModule.provider('$routeParams', $RouteParamsProvider); * // Route: /Chapter/:chapterId/Section/:sectionId * // * // Then - * $routeParams ==> {chapterId:1, sectionId:2, search:'moby'} + * $routeParams ==> {chapterId:'1', sectionId:'2', search:'moby'} * ``` */ function $RouteParamsProvider() {