From 5d943abbd672789307c80614e798d594619297e1 Mon Sep 17 00:00:00 2001 From: Smoseph Date: Tue, 27 Oct 2015 19:33:01 -0700 Subject: [PATCH] Small grammatical clarification Tense was different than all other descriptions and was more confusing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7a8c528..1e012055 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ __Behavioral Patterns__: | [memento](memento.py) | generate an opaque token that can be used to go back to a previous state | | [observer](observer.py) | provide a callback for notification of events/changes to data | | [publish_subscribe](publish_subscribe.py) | a source syndicates events/data to 0+ registered listeners | -| [registry](registry.py) | keeping track of all subclasses of a given class | +| [registry](registry.py) | keep track of all subclasses of a given class | | [specification](specification.py) | business rules can be recombined by chaining the business rules together using boolean logic | | [state](state.py) | logic is organized into a discrete number of potential states and the next state that can be transitioned to | | [strategy](strategy.py) | selectable operations over the same data |