aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngRoute/route.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngRoute/route.js')
-rw-r--r--src/ngRoute/route.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js
index f958849e..94c4b581 100644
--- a/src/ngRoute/route.js
+++ b/src/ngRoute/route.js
@@ -83,7 +83,7 @@ function $RouteProvider(){
*
* If `template` is a function, it will be called with the following parameters:
*
- * - `{Array.<Object>}` - route parameters extracted from the current
+ * - `{Array.&lt;Object&gt;}` - route parameters extracted from the current
* `$location.path()` by applying the current route
*
* - `templateUrl` – `{string=|function()=}` – path or function that returns a path to an html
@@ -91,7 +91,7 @@ function $RouteProvider(){
*
* If `templateUrl` is a function, it will be called with the following parameters:
*
- * - `{Array.<Object>}` - route parameters extracted from the current
+ * - `{Array.&lt;Object&gt;}` - route parameters extracted from the current
* `$location.path()` by applying the current route
*
* - `resolve` - `{Object.<string, function>=}` - An optional map of dependencies which should
@@ -248,7 +248,7 @@ function $RouteProvider(){
* - `$scope` - The current route scope.
* - `$template` - The current route template HTML.
*
- * @property {Array.<Object>} routes Array of all configured routes.
+ * @property {Array.&lt;Object&gt;} routes Array of all configured routes.
*
* @description
* `$route` is used for deep-linking URLs to controllers and views (HTML partials).