doc: edit general documentation

This commit is contained in:
Ruidy 2020-10-02 17:00:38 +02:00
parent 6e0e0759fe
commit 9e8fba159b
2 changed files with 7 additions and 2 deletions

View file

@ -1,7 +1,5 @@
# Design Patterns in Python
- [Link](https://refactoring.guru/design-patterns/catalog)
Design patterns are typical solutions to common problems
in software design. Each pattern is like a blueprint
that you can customize to solve a particular
@ -44,3 +42,9 @@ and divided into three groups.
- [Chain of Responsibility](behavioral/chain_responsibility/README.md)
- [Command](behavioral/command/README.md)
- [Iterator](behavioral/iterator/README.md)
- [Mediator](behavioral/mediator/README.md)
## Ressources
- [Refactoring Guru](https://refactoring.guru/design-patterns/catalog)
- [Python Design Patterns](https://python-patterns.guide/)

View file

@ -7,3 +7,4 @@ Behavioral design patterns are concerned with algorithms and the assignment of r
- [Chain of Responsibility](chain_responsibility/README.md)
- [Command](command/README.md)
- [Iterator](iterator/README.md)
- [Mediator](mediator/README.md)