Skip to content

Commit f94a3d9

Browse files
committed
Generation.
1 parent a25b798 commit f94a3d9

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

Design-Patterns.playground.zip

37 Bytes
Binary file not shown.

Design-Patterns.playground/Documentation/section-87.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<h1 id="info">Info</h1>
1515
<p>🍺 Playground generated with: <a href="https://github.com/jas/playground">playground</a> by <a href="http://twitter.com/jasonsandmeyer">@jasonsandmeyer</a></p>
1616
<p>📖 Descriptions from: <a href="http://www.blackwasp.co.uk/GangOfFour.aspx">Gang of Four Design Patterns Reference Sheet</a></p>
17-
<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>
17+
<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>
1818

1919
</section>
2020
</div>

Design-Patterns.playground/section-46.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ let uglierPoint = Point {
22
$0.x = 0.1
33
$0.y = 0.2
44
$0.z = 0.3
5-
}
5+
}
6+
7+
let alsoUglyPoint = Point { ($0.x, $0.y, $0.z) = (0.1, 0.2, 0.3) }

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,9 @@ let uglierPoint = Point {
650650
$0.y = 0.2
651651
$0.z = 0.3
652652
}
653+
654+
let alsoUglyPoint = Point { ($0.x, $0.y, $0.z) = (0.1, 0.2, 0.3) }
655+
653656
```
654657
##🏭 Factory Method
655658

@@ -1121,4 +1124,4 @@ Info
11211124

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

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

0 commit comments

Comments
 (0)