aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/directive.ngdoc
diff options
context:
space:
mode:
authorSrinivas Kusunam2013-03-22 14:25:29 -0500
committerIgor Minar2013-04-04 09:42:12 -0700
commit7bf32ccadb098d93c162de53b0e64d1ff188e82f (patch)
tree209e8e4a8b906c9326817c48ab88c593085ee495 /docs/content/guide/directive.ngdoc
parentf5c18861b673ad18aac01f3622c62094b18d843d (diff)
downloadangular.js-7bf32ccadb098d93c162de53b0e64d1ff188e82f.tar.bz2
docs(directive): fix typo
Diffstat (limited to 'docs/content/guide/directive.ngdoc')
-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 cf70ad10..7e17f6c9 100644
--- a/docs/content/guide/directive.ngdoc
+++ b/docs/content/guide/directive.ngdoc
@@ -206,7 +206,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);
});