From afddf5fcc6cd575dc6e606c8f63d449e560a7553 Mon Sep 17 00:00:00 2001 From: inux Date: Thu, 3 Aug 2017 20:16:29 +0200 Subject: [PATCH] =?UTF-8?q?added=20=E2=9C=94=20to=20abstract=20factory=20&?= =?UTF-8?q?=20fixed=20underline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- creational/abstract-factory.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7d9f5f7..113e971 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ 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 | ✘ | +| [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 | ✔ | | [Object Pool](/creational/object-pool.md) | Instantiates and maintains a group of objects instances of the same type | ✔ | diff --git a/creational/abstract-factory.md b/creational/abstract-factory.md index 18274bf..e9b617b 100644 --- a/creational/abstract-factory.md +++ b/creational/abstract-factory.md @@ -4,4 +4,4 @@ The [abstract factory design pattern](https://en.wikipedia.org/wiki/Abstract_fac # Implementation and Example -An example with implementation and usage can be found in [abstract_factory.go](abstract_factory.go). \ No newline at end of file +An example with implementation and usage can be found in [abstract-factory.go](abstract-factory.go). \ No newline at end of file