From 2b874be525c05510875f58247469bae1f6ca8339 Mon Sep 17 00:00:00 2001 From: bosoniq Date: Fri, 21 Mar 2014 13:26:55 +0100 Subject: [PATCH 1/2] Fixed misspelling of through modified: Composite/README.md --- Composite/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 Composite/README.md diff --git a/Composite/README.md b/Composite/README.md old mode 100644 new mode 100755 index 01732d1..6d4cea3 --- a/Composite/README.md +++ b/Composite/README.md @@ -7,6 +7,6 @@ To treat a group of objects the same way as a single instance of the object. # Examples * a form class instance handles all its form elements like a single instance of the form, when `render()` is called, it - subsequently runs trough all its child elements and calls `render()` on them + subsequently runs through all its child elements and calls `render()` on them * `Zend_Config`: a tree of configuration options, each one is a `Zend_Config` object itself From 30c4e773d3c8d41dac4ccc752aace13e244521f6 Mon Sep 17 00:00:00 2001 From: bosoniq Date: Fri, 21 Mar 2014 18:39:20 +0100 Subject: [PATCH 2/2] Fixed misspelling of through modified: README.md --- Composite/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Composite/README.md b/Composite/README.md index 6d4cea3..ae22908 100755 --- a/Composite/README.md +++ b/Composite/README.md @@ -2,7 +2,7 @@ # Purpose -To treat a group of objects the same way as a single instance of the object. +To treat a group of objects the same way as a single instance of the object. # Examples