From d0feb3c8d5db40e39d4a90b2a4797f8574a651b4 Mon Sep 17 00:00:00 2001 From: Ilkka Seppala Date: Sat, 4 Apr 2015 21:12:43 +0300 Subject: [PATCH] Moved Model-View-Presenter pattern under Presentation Tier Patterns. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a0bbf441..a972aadb3 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,6 @@ Structural patterns are concerned with how classes and objects are composed to f * [Flyweight](#flyweight) * [Proxy](#proxy) * [Service Locator](#service-locator) -* [Model-View-Presenter](#model-view-presenter) * [Servant](#servant) * [Event Aggregator](#event-aggregator) @@ -66,6 +65,7 @@ Behavioral patterns are concerned with algorithms and the assignment of responsi Presentation Tier patterns are the top-most level of the application, this is concerned with translating tasks and results to something the user can understand. * [Intercepting Filter](#intercepting-filter) +* [Model-View-Presenter](#model-view-presenter) ## Abstract Factory [↑](#list-of-design-patterns)