From b80ac39e1f44ff83e953342f6254b0f97bb75f95 Mon Sep 17 00:00:00 2001
From: Anum Amin <39243539+blueberry404@users.noreply.github.com>
Date: Sun, 24 Oct 2021 11:23:12 +0500
Subject: [PATCH] docs: Add tutorial link for Acyclic Visitor pattern (#525)
 (#1884)

---
 acyclic-visitor/README.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/acyclic-visitor/README.md b/acyclic-visitor/README.md
index ee269a1f2..0a90836ab 100644
--- a/acyclic-visitor/README.md
+++ b/acyclic-visitor/README.md
@@ -138,6 +138,10 @@ This pattern can be used:
 * When the visited class hierarchy will be frequently extended with new derivatives of the Element class.
 * When the recompilation, relinking, retesting or redistribution of the derivatives of Element is very expensive.
 
+## Tutorial
+
+* [Acyclic Visitor Pattern Example](https://codecrafter.blogspot.com/2012/12/the-acyclic-visitor-pattern.html)
+
 ## Consequences
 
 The good: