From da7d23b7940d5f6c1aae2d4ef2c04b2d2f507bee Mon Sep 17 00:00:00 2001 From: vehpsr Date: Sun, 5 Apr 2015 18:04:31 +0300 Subject: [PATCH] move Callback to idioms --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 90d487b91..20289d8cd 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,6 @@ Behavioral patterns are concerned with algorithms and the assignment of responsi * [Template method](#template-method) * [Visitor](#visitor) * [Null Object](#null-object) -* [Callback](#callback) ### Presentation Tier Patterns @@ -72,7 +71,7 @@ A programming idiom is a means of expressing a recurring construct in one or mor * [Execute Around](#execute-around) * [Double Checked Locking](#double-checked-locking) * [Poison Pill](#poison-pill) - +* [Callback](#callback) ## Abstract Factory [↑](#list-of-design-patterns) **Intent:** Provide an interface for creating families of related or dependent objects without specifying their concrete classes.