Skip to content

Commit

Permalink
Generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ochococo committed Jan 21, 2015
1 parent a25b798 commit f94a3d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Binary file modified Design-Patterns.playground.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Design-Patterns.playground/Documentation/section-87.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<h1 id="info">Info</h1>
<p>🍺 Playground generated with: <a href="https://github.com/jas/playground">playground</a> by <a href="http://twitter.com/jasonsandmeyer">@jasonsandmeyer</a></p>
<p>📖 Descriptions from: <a href="http://www.blackwasp.co.uk/GangOfFour.aspx">Gang of Four Design Patterns Reference Sheet</a></p>
<p>🚀 How to generate playground (+zip) from this README: <a href="https://github.com/ochococo/Design-Patterns-In-Swift/blob/master/GENERATE.markdown">GENERATE.markdown</a></p>
<p>🚀 How to generate playground (+zip) from this README: <a href="https://github.com/ochococo/Design-Patterns-In-Swift/blob/master/GENERATE.md">GENERATE.md</a></p>

</section>
</div>
Expand Down
4 changes: 3 additions & 1 deletion Design-Patterns.playground/section-46.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ let uglierPoint = Point {
$0.x = 0.1
$0.y = 0.2
$0.z = 0.3
}
}

let alsoUglyPoint = Point { ($0.x, $0.y, $0.z) = (0.1, 0.2, 0.3) }
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -650,6 +650,9 @@ let uglierPoint = Point {
$0.y = 0.2
$0.z = 0.3
}

let alsoUglyPoint = Point { ($0.x, $0.y, $0.z) = (0.1, 0.2, 0.3) }

```
##🏭 Factory Method

Expand Down Expand Up @@ -1121,4 +1124,4 @@ Info

📖 Descriptions from: [Gang of Four Design Patterns Reference Sheet](http://www.blackwasp.co.uk/GangOfFour.aspx)

🚀 How to generate playground (+zip) from this README: [GENERATE.markdown](https://github.com/ochococo/Design-Patterns-In-Swift/blob/master/GENERATE.markdown)
🚀 How to generate playground (+zip) from this README: [GENERATE.md](https://github.com/ochococo/Design-Patterns-In-Swift/blob/master/GENERATE.md)

0 comments on commit f94a3d9

Please sign in to comment.