From c3ec6ea2264ffb641e2f6f5371af4ef289cfe812 Mon Sep 17 00:00:00 2001 From: martco Date: Fri, 28 Mar 2014 11:49:36 -0500 Subject: [PATCH] docs(guide/directive): grammatical fixup The 'to' in 'end-to-end' is directional, not numeric Closes #6895 --- docs/content/guide/directive.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index e757589b..84ef5347 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -537,7 +537,7 @@ where: In our `link` function, we want to update the displayed time once a second, or whenever a user changes the time formatting string that our directive binds to. We will use the `$interval` service to call a handler on a regular basis. This is easier than using `$timeout` but also works better with -end 2 end testing, where we want to ensure that all $timeouts have completed before completing the test. +end-to-end testing, where we want to ensure that all $timeouts have completed before completing the test. We also want to remove the `$interval` if the directive is deleted so we don't introduce a memory leak.