forked from faif/python-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request faif#218 from ethan92429/patch-1
Grammar
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ | |
from its actual representation (generally for abstraction). | ||
*What does this example do? | ||
This particular example uses a director function to abtract the | ||
This particular example uses a director function to abstract the | ||
construction of a building. The user specifies a Builder (House or | ||
Flat) and the director specifies the methods in the order necessary | ||
creating a different building depending on the specified | ||
specification (through the Builder class). | ||
Flat) and the director specifies the methods in the order necessary, | ||
creating a different building depending on the specification | ||
(from the Builder class). | ||
@author: Diogenes Augusto Fernandes Herminio <[email protected]> | ||
https://gist.github.com/420905#file_builder_python.py | ||
|