fixed misspellings of dependent

This commit is contained in:
Dominik Liebler 2014-01-27 18:13:47 +01:00
parent 75768be92f
commit a813157de1
2 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@
## Purpose
To create series of related or dependant objects without specifying their concrete classes.
To create series of related or dependent objects without specifying their concrete classes.
Usually the created classes all implement the same interface. The client of the abstract factory does not care about how these objects are created, he just knows how they go together.

View File

@ -2,7 +2,7 @@
## Purpose
Similar to the AbstractFactory, this pattern is used to create series of related or dependant objects.
Similar to the AbstractFactory, this pattern is used to create series of related or dependent objects.
The difference between this and the abstract factory pattern is that the static factory pattern uses just one static
method to create all types of objects it can create. It is usually named `factory` or `build`.