From 12e9efc8b4fcc18ac7001f7663055f9c26ab34e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sun, 24 May 2015 12:53:16 +0300 Subject: [PATCH] Moved Private Class Data under Idioms category. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69bfb2541..24bd3e3ec 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ Structural patterns are concerned with how classes and objects are composed to f * [Service Locator](#service-locator) * [Servant](#servant) * [Event Aggregator](#event-aggregator) -* [Private Class Data](#private-class-data) ### Behavioral Patterns @@ -99,6 +98,7 @@ A programming idiom is a means of expressing a recurring construct in one or mor * [Lazy Loading](#lazy-loading) * [Double Dispatch](#double-dispatch) * [Resource Acquisition Is Initialization](#resource-acquisition-is-initialization) +* [Private Class Data](#private-class-data) ## Abstract Factory [↑](#list-of-design-patterns) **Intent:** Provide an interface for creating families of related or dependent objects without specifying their concrete classes.