From 396c3ab5c8583033b1120feaa5d6c451a587e168 Mon Sep 17 00:00:00 2001 From: inux Date: Thu, 27 Jul 2017 17:43:01 +0200 Subject: [PATCH] fixed reamde --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 611dce5..ee10810 100644 --- a/README.md +++ b/README.md @@ -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 | ✔ |