aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngRoute/route.js
diff options
context:
space:
mode:
authorPeter Bacon Darwin2014-02-14 15:52:17 +0000
committerPeter Bacon Darwin2014-02-16 19:03:44 +0000
commit2123772a653eeb969ef6f8c21d1daee878098fe1 (patch)
treecf26be60ffd6323c0e537fecba4dbe9027522bad /src/ngRoute/route.js
parentcb1efd818be0b8622d1ffe4340241d85b9690b8e (diff)
downloadangular.js-2123772a653eeb969ef6f8c21d1daee878098fe1.tar.bz2
docs(api): escape params that have <object> in their type
Really the doc-gen process should escape there but for now this should stop the layout from breaking.
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).