Skip to content

Commit fadbd81

Browse files
committed
Merge pull request #1304 from practicalswift/remove-spaces
[gardening] Remove double spaces in newly introduced code
2 parents d43b038 + 1ddf6b5 commit fadbd81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark/single-source/Ackermann.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import TestsUtils
1616

1717
func ackermann(M : Int, _ N : Int) -> Int {
18-
if (M == 0) { return N + 1 }
18+
if (M == 0) { return N + 1 }
1919
if (N == 0) { return ackermann(M - 1, 1) }
2020
return ackermann(M - 1, ackermann(M, N - 1))
2121
}
@@ -25,7 +25,7 @@ func Ackermann(M : Int, _ N : Int) -> Int {
2525
// This if prevents optimizer from computing return value of Ackermann(3,9)
2626
// at compile time.
2727
if False() { return 0 }
28-
if (M == 0) { return N + 1 }
28+
if (M == 0) { return N + 1 }
2929
if (N == 0) { return ackermann(M - 1, 1) }
3030
return ackermann(M - 1, ackermann(M, N - 1))
3131
}

0 commit comments

Comments
 (0)