From a5f0c8dce204e22c2af0d6923d5c272e9703ee40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20M=C3=A9ausoone?= <592978+Ameausoone@users.noreply.github.com> Date: Sat, 29 Oct 2022 10:31:38 +0200 Subject: [PATCH] docs(root/README): fix link to proxy readme file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a8c26f..0bfe1a0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ A curated collection of idiomatic design & application patterns for Go language. | [Decorator](/structural/decorator/decorator.md) | Adds behavior to an object, statically or dynamically | ✔ | | [Facade](/structural/facade/main.go) | Uses one type as an API to a number of others | ✔ | | [Flyweight](/structural/flyweight/main.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage | ✔ | -| [Proxy](/structural/decorator/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ | +| [Proxy](/structural/proxy/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ | | [Adapter](/structural/adapter/adapter.md) | Provides a surrogate for an object to control it's actions | ✔ | ## Behavioral Patterns