doc: edit general doc

This commit is contained in:
Ruidy 2020-09-30 13:43:14 +02:00
parent 487d43d51f
commit 14edccf606
3 changed files with 7 additions and 0 deletions

View file

@ -39,3 +39,6 @@ and divided into three groups.
- [Flyweight](structural/flyweight/README.md) - [Flyweight](structural/flyweight/README.md)
- [Proxy](structural/proxy/README.md) - [Proxy](structural/proxy/README.md)
### [Behavioral Patterns](behavioral/README.md)
- [Chain of Responsibility](behavioral/chain_responsibility/README.md)

View file

@ -2,6 +2,8 @@
Creational patterns provide various object creation mechanisms, which increase flexibility and reuse of existing code. Creational patterns provide various object creation mechanisms, which increase flexibility and reuse of existing code.
## Patterns
- [Factory Method](factory_method/README.md) - [Factory Method](factory_method/README.md)
- [Abstract Factory](abstract_factory/README.md) - [Abstract Factory](abstract_factory/README.md)
- [Builder](builder/README.md) - [Builder](builder/README.md)

View file

@ -2,6 +2,8 @@
Structural patterns explain how to assemble objects and classes into larger structures while keeping these structures flexible and efficient. Structural patterns explain how to assemble objects and classes into larger structures while keeping these structures flexible and efficient.
## Patterns
- [Adapter](adapter/README.md) - [Adapter](adapter/README.md)
- [Bridge](bridge/README.md) - [Bridge](bridge/README.md)
- [Composite](composite/README.md) - [Composite](composite/README.md)