docs(guide): minor grammatical change

This commit is contained in:
Paulo Ávila 2013-04-21 15:01:00 +03:00 committed by Pawel Kozlowski
parent 59c29e320a
commit 2c34596b32

View file

@ -23,7 +23,7 @@ There are only three ways how an object or a function can get a hold of its depe
3. The dependency can be passed in to where it is needed.
The first two option of creating or looking up dependencies are not optimal, because they hard
The first two options of creating or looking up dependencies are not optimal, because they hard
code the dependency, making it difficult, if not impossible, to modify the dependencies.
This is especially problematic in tests, where it is often desirable to provide mock dependencies
for test isolation.