Skip to content

Commit d38c428

Browse files
committed
Fix spacing in Big-O notation article
1 parent 02395b8 commit d38c428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Big-O Notation.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Below are some examples for each category of performance:
121121
if n > 1 {
122122
solveHanoi(n: n - 1, from: from, to: spare, spare: to)
123123
} else {
124-
solveHanoi(n: n-1, from: spare, to: to, spare: from)
124+
solveHanoi(n: n - 1, from: spare, to: to, spare: from)
125125
}
126126
}
127127
```

0 commit comments

Comments
 (0)