aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.unit-testing.ngdoc
diff options
context:
space:
mode:
authorgabriel-tessier2013-10-23 18:51:36 +0900
committerPete Bacon Darwin2013-10-26 20:15:50 +0100
commit2cdb588b8660940bdb73c6a909a12d9c594e4b91 (patch)
treef838b892de9e41b20fa9887348f9919e5699dad3 /docs/content/guide/dev_guide.unit-testing.ngdoc
parent0bbb9e6258bd60a2676a475acc92b13b2c3425dc (diff)
downloadangular.js-2cdb588b8660940bdb73c6a909a12d9c594e4b91.tar.bz2
docs(guide/unit-testing): fix typo
Closes #4601
Diffstat (limited to 'docs/content/guide/dev_guide.unit-testing.ngdoc')
-rw-r--r--docs/content/guide/dev_guide.unit-testing.ngdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/guide/dev_guide.unit-testing.ngdoc b/docs/content/guide/dev_guide.unit-testing.ngdoc
index f029e6da..a5f7fc7f 100644
--- a/docs/content/guide/dev_guide.unit-testing.ngdoc
+++ b/docs/content/guide/dev_guide.unit-testing.ngdoc
@@ -132,7 +132,7 @@ function MyClass() {
</pre>
However, where does the serviceRegistry come from? if it is:
-* `new`-ed up, the the test has no chance to reset the services for testing
+* `new`-ed up, the test has no chance to reset the services for testing
* global look-up, then the service returned is global as well (but resetting is easier, since
there is only one global variable to be reset).