Added missing PO templates

Also added some punctuation, grammar and style fixes to some RST files.
This commit is contained in:
Axel Pardemann
2016-09-22 11:30:07 -05:00
parent df64d6071c
commit 53bc377d88
45 changed files with 2429 additions and 4 deletions

View File

@@ -4,7 +4,11 @@
Purpose
-------
Demonstrate the Delegator pattern, where an object, instead of performing one of its stated tasks, delegates that task to an associated helper object. In this case TeamLead professes to writeCode and Usage uses this, while TeamLead delegates writeCode to JuniorDeveloper's writeBadCode function. This inverts the responsibility so that Usage is unknowingly executing writeBadCode.
Demonstrate the Delegator pattern, where an object, instead of performing one
of its stated tasks, delegates that task to an associated helper object. In
this case TeamLead professes to writeCode and Usage uses this, while TeamLead
delegates writeCode to JuniorDeveloper's writeBadCode function. This inverts
the responsibility so that Usage is unknowingly executing writeBadCode.
Examples
--------