From 7ba8e00dffe78410e00f8d2d04eac56fa3f02a7f Mon Sep 17 00:00:00 2001 From: Serge Bishyr Date: Wed, 18 Oct 2017 16:34:33 +0300 Subject: [PATCH] behavioral/visitor: marked visitor as implement in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7d9f5f7..783b90f 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ A curated collection of idiomatic design & application patterns for Go language. | [State](/behavioral/state.md) | Encapsulates varying behavior for the same object based on its internal state | ✘ | | [Strategy](/behavioral/strategy.md) | Enables an algorithm's behavior to be selected at runtime | ✔ | | [Template](/behavioral/template.md) | Defines a skeleton class which defers some methods to subclasses | ✘ | -| [Visitor](/behavioral/visitor.md) | Separates an algorithm from an object on which it operates | ✘ | +| [Visitor](/behavioral/visitor.md) | Separates an algorithm from an object on which it operates | ✔ | ## Synchronization Patterns