aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjohnlindquist2012-08-23 13:02:31 -0600
committerIgor Minar2012-08-24 14:59:43 -0700
commit9391475dc3bad03895fcf277f57422d64bd38ef5 (patch)
tree0920e34356e5213f31e81d2569e9c4917eafb382
parent7840803add0084c9ab265c6f569f5899c9ea531b (diff)
downloadangular.js-9391475dc3bad03895fcf277f57422d64bd38ef5.tar.bz2
docs(ngRoute): fix typo
aftre -> after
-rw-r--r--src/ng/route.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/route.js b/src/ng/route.js
index 298732aa..f488ebf4 100644
--- a/src/ng/route.js
+++ b/src/ng/route.js
@@ -38,7 +38,7 @@ function $RouteProvider(){
* - `resolve` - `{Object.<string, function>=}` - An optional map of dependencies which should
* be injected into the controller. If any of these dependencies are promises, they will be
* resolved and converted to a value before the controller is instantiated and the
- * `$aftreRouteChange` event is fired. The map object is:
+ * `$afterRouteChange` event is fired. The map object is:
*
* - `key` – `{string}`: a name of a dependency to be injected into the controller.
* - `factory` - `{string|function}`: If `string` then it is an alias for a service.