Skip to content

Commit

Permalink
Fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed May 8, 2015
1 parent fd09370 commit 0e74400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StreamTests/StreamTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class StreamTests: XCTestCase {

let fibonacci: Stream<Int> = fix { fib in
{ x, y in Stream.cons(x + y, fib(y, x + y)) }
}(0, 1)
}(0, 1)

func testTake() {
let stream = fibonacci.take(3)
Expand Down

0 comments on commit 0e74400

Please sign in to comment.