diff options
| author | doodeec | 2014-03-05 18:23:22 +0100 | 
|---|---|---|
| committer | Igor Minar | 2014-03-10 02:19:57 -0700 | 
| commit | 0d8de2d3ea44a8bb1f0702ccf7a4542200452f16 (patch) | |
| tree | c77134d421f531e7ef5fb175a6015f34f3751c85 /src/ngRoute/route.js | |
| parent | 7833ce0a6e9af904979f24828a4ad5990813d089 (diff) | |
| download | angular.js-0d8de2d3ea44a8bb1f0702ccf7a4542200452f16.tar.bz2 | |
docs($route): change routes property to correct type
change $route.routes property type to Object, property is marked incorrectly as an Array
Closes #6552
Diffstat (limited to 'src/ngRoute/route.js')
| -rw-r--r-- | src/ngRoute/route.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index 80aef034..1044eb27 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -247,7 +247,7 @@ function $RouteProvider(){       *     - `$scope` - The current route scope.       *     - `$template` - The current route template HTML.       * -     * @property {Array.<Object>} routes Array of all configured routes. +     * @property {Object} routes Object with all route configuration Objects as its properties.       *       * @description       * `$route` is used for deep-linking URLs to controllers and views (HTML partials). | 
