1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-22 13:06:09 +03:00

added ✔ to abstract factory & fixed underline

This commit is contained in:
inux 2017-08-03 20:16:29 +02:00
parent f0beca6ab4
commit afddf5fcc6
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ A curated collection of idiomatic design & application patterns for Go language.
| Pattern | Description | Status | | Pattern | Description | Status |
|:-------:|:----------- |:------:| |:-------:|:----------- |:------:|
| [Abstract Factory](/creational/abstract_factory.md) | Provides an interface for creating families of releated objects | ✘ | | [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 | ✔ | | [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 | ✔ | | [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 | ✔ | | [Object Pool](/creational/object-pool.md) | Instantiates and maintains a group of objects instances of the same type | ✔ |

View File

@ -4,4 +4,4 @@ The [abstract factory design pattern](https://en.wikipedia.org/wiki/Abstract_fac
# Implementation and Example # Implementation and Example
An example with implementation and usage can be found in [abstract_factory.go](abstract_factory.go). An example with implementation and usage can be found in [abstract-factory.go](abstract-factory.go).