Fix wording within creational patterns (#24044)

pull/34999/head
Marco Koch 2019-01-30 09:38:34 +01:00 committed by Manish Giri
parent 8584637254
commit a4d9c68039
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ title: Creational patterns
## Creational patterns
Creational design patterns are design patterns that deal with object creation mechanisms, trying to create objects in a manner suitable to the situation. The basic form of object creation could result in design problems or in added complexity to the design. Creational design patterns solve this problem by somehow controlling this object creation.
Creational design patterns are design patterns that deal with object creation mechanisms, trying to create objects in a manner suitable to the situation. The basic form of object creation could result in design problems or added complexity to the design. Creational design patterns solve this problem by somehow controlling this object creation.
Creational design patterns are composed of two dominant ideas. One is encapsulating knowledge about which concrete classes the system uses. Another is hiding how instances of these concrete classes are created and combined.