1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

fixed reamde

This commit is contained in:
inux 2017-07-27 17:43:01 +02:00
parent 2ffa6cc0bc
commit 396c3ab5c8

View file

@ -16,8 +16,8 @@ A curated collection of idiomatic design & application patterns for Go language.
| Pattern | Description | Status |
|:-------:|:----------- |:------:|
| [Abstract Factory](/creational/abstract_factory.md) | Provides an interface for creating families of releated objects | ✔ |
| [Builder](/creational/builder.md) | Builds a complex object using simple objects | |
| [Factory Method](/creational/factory.md) | Defers instantiation of an object to a specialized function for creating instances | |
| [Builder](/creational/builder.md) | Builds a complex object using simple objects | |
| [Factory Method](/creational/factory.md) | Defers instantiation of an object to a specialized function for creating instances | |
| [Object Pool](/creational/object_pool.md) | Instantiates and maintains a group of objects instances of the same type | ✔ |
| [Singleton](/creational/singleton.md) | Restricts instantiation of a type to one object | ✔ |