aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorSrinivas Kusunam2013-03-22 14:25:29 -0500
committerPawel Kozlowski2013-03-29 23:22:02 +0100
commit53abd3fba779c63e096af04663b898767bce36f3 (patch)
tree6b2be54b2b5d6d869c4bb0e383d9247c61782896 /docs/content
parent06ada222c26f717552fad88fb9534abf09824c61 (diff)
downloadangular.js-53abd3fba779c63e096af04663b898767bce36f3.tar.bz2
docs(directive): fix typo
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/guide/directive.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc
index 14970b65..ba87f285 100644
--- a/docs/content/guide/directive.ngdoc
+++ b/docs/content/guide/directive.ngdoc
@@ -231,7 +231,7 @@ In this example we will build a directive that displays the current time.
}
// listen on DOM destroy (removal) event, and cancel the next UI update
- // to prevent updating time ofter the DOM element was removed.
+ // to prevent updating time after the DOM element was removed.
element.bind('$destroy', function() {
$timeout.cancel(timeoutId);
});