aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/route.js
diff options
context:
space:
mode:
authorjohnlindquist2012-08-23 13:02:31 -0600
committerBrian Ford2012-08-23 15:11:07 -0400
commit32137cab820d144bf327849a26116e6ee8160797 (patch)
treea21e8dd3ebd7d3f6e197c9514e49c774be4a361d /src/ng/route.js
parentf7b4296c389c57a03a411dfc89776f21d66569fd (diff)
downloadangular.js-32137cab820d144bf327849a26116e6ee8160797.tar.bz2
docs(ngRoute): fix typo
aftre -> after
Diffstat (limited to 'src/ng/route.js')
-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.