mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-09 17:36:22 +02:00
Merge pull request #73 from bosoniq/master
Fixed misspelling in Composite pattern README.md
This commit is contained in:
4
Composite/README.md
Normal file → Executable file
4
Composite/README.md
Normal file → Executable file
@ -2,11 +2,11 @@
|
||||
|
||||
# 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
|
||||
|
||||
* 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
|
||||
|
||||
|
Reference in New Issue
Block a user