Skip to content

Commit

Permalink
Generator type alias not required
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh committed Dec 20, 2014
1 parent 40b5ce5 commit 5e04dca
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 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
1 change: 0 additions & 1 deletion Design-Patterns.playground/section-10.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ struct Cart<T> {
}

extension Cart: SequenceType {
typealias Generator = GeneratorOf<T>

func generate() -> GeneratorOf<T> {
var i = 0
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ struct Cart<T> {
}

extension Cart: SequenceType {
typealias Generator = GeneratorOf<T>

func generate() -> GeneratorOf<T> {
var i = 0
Expand Down Expand Up @@ -1121,4 +1120,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)
1 change: 0 additions & 1 deletion docs/behavioral/iterator.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ struct Cart<T> {
}

extension Cart: SequenceType {
typealias Generator = GeneratorOf<T>

func generate() -> GeneratorOf<T> {
var i = 0
Expand Down

0 comments on commit 5e04dca

Please sign in to comment.