Skip to content

Commit 5f31d0f

Browse files
author
Chris Pilcher
authored
Merge pull request kodecocodes#142 from raywenderlich/fizz-buzz-result-error-fix
Fix for kodecocodes#141
2 parents 3d7953a + 38d2252 commit 5f31d0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Fizz Buzz/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The modulus operator returns the remainder after an integer division. Here is an
1818

1919
| Division | Division Result | Modulus | Modulus Result |
2020
| ------------- | -------------------------- | --------------- | ---------------:|
21-
| 1 / 3 | 0 with a remainder of 3 | 1 % 3 | 3 |
21+
| 1 / 3 | 0 with a remainder of 3 | 1 % 3 | 1 |
2222
| 5 / 3 | 1 with a remainder of 2 | 5 % 3 | 2 |
2323
| 16 / 3 | 5 with a remainder of 1 | 16 % 3 | 1 |
2424

0 commit comments

Comments
 (0)