Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions creational/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <diofeher@gmail.com>
https://gist.github.com/420905#file_builder_python.py
Expand Down