docs(ngRoute): $routeParams is Object.<string, string>

Closes #7386
This commit is contained in:
Wes Alvaro
2014-05-07 13:01:19 -07:00
committed by Peter Bacon Darwin
parent 82f45aee5b
commit ad0d3e0f1b

View File

@@ -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() {