From 559f704422585a2113cd54214e53fa599e7cd03f Mon Sep 17 00:00:00 2001 From: nitesh420 Date: Mon, 20 Aug 2018 00:55:17 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c9f307..cefa928 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ A curated collection of idiomatic design & application patterns for Go language. | [Composite](/structural/composite.md) | Encapsulates and provides access to a number of different objects | ✘ | | [Decorator](/structural/decorator.md) | Adds behavior to an object, statically or dynamically | ✔ | | [Facade](/structural/facade.md) | Uses one type as an API to a number of others | ✘ | -| [Flyweight](https://github.com/nitesh420/go-patterns/blob/master/structural/flyweight.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage |✔ | +| [Flyweight](/structural/flyweight.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage |✔ | | [Proxy](/structural/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ | ## Behavioral Patterns