aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.unit-testing.ngdoc
diff options
context:
space:
mode:
authorSteve Nicolai2012-08-05 14:16:37 -0500
committerMisko Hevery2012-08-30 21:34:42 -0700
commitf66836fee40ba99008bf9d86a4dd9654b622f105 (patch)
tree71fb6172bff42684c4191687de53639b613148c5 /docs/content/guide/dev_guide.unit-testing.ngdoc
parent0ccc445d5350c352983278eba0919bc7e4c30b34 (diff)
downloadangular.js-f66836fee40ba99008bf9d86a4dd9654b622f105.tar.bz2
doc(devguide) - Fix typos and small grammatical errors in the developer guide.
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 fe3db075..fd0fe1dd 100644
--- a/docs/content/guide/dev_guide.unit-testing.ngdoc
+++ b/docs/content/guide/dev_guide.unit-testing.ngdoc
@@ -16,7 +16,7 @@ this may seem obvious it usually is very difficult to be able to call an individ
typical project. The reason is that the developers often time mix concerns, and they end up with a
piece of code which does everything. It reads the data from XHR, it sorts it and then it
manipulates the DOM. With angular we try to make it easy for you to do the right thing, and so we
-provide dependency injection for your XHR (which you can mock out) and we crated abstraction which
+provide dependency injection for your XHR (which you can mock out) and we created abstraction which
allow you to sort your model without having to resort to manipulating the DOM. So that in the end,
it is easy to write a sort function which sorts some data, so that your test can create a data set,
apply the function, and assert that the resulting model is in the correct order. The test does not