Skip to content

Commit

Permalink
Fix for kodecocodes#141
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Pilcher committed Jun 10, 2016
1 parent 3d7953a commit 38d2252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fizz Buzz/README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The modulus operator returns the remainder after an integer division. Here is an

| Division | Division Result | Modulus | Modulus Result |
| ------------- | -------------------------- | --------------- | ---------------:|
| 1 / 3 | 0 with a remainder of 3 | 1 % 3 | 3 |
| 1 / 3 | 0 with a remainder of 3 | 1 % 3 | 1 |
| 5 / 3 | 1 with a remainder of 2 | 5 % 3 | 2 |
| 16 / 3 | 5 with a remainder of 1 | 16 % 3 | 1 |

Expand Down

0 comments on commit 38d2252

Please sign in to comment.