diff options
author | mvalipour <valipour@gmail.com> | 2013-11-18 22:58:27 +0000 |
---|---|---|
committer | mvalipour <valipour@gmail.com> | 2013-11-18 22:58:27 +0000 |
commit | fbb7ea38a1530d2e4cca6bce7f3db6b392e90ce1 (patch) | |
tree | c79343f3b7da881336c84651cd7243d9be81df5f | |
parent | ad848fe6ca71a9b5621dbadb763db7bfd6c6558b (diff) |
Fix while loop iterator incorrect count
The while loop is repeated 100 times not 99 times. 0~99 inclusive.
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index 87c2f704..dad0c26b 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -233,7 +233,7 @@ on a new line! ""Wow!"", the masses cried"; int fooWhile = 0; while (fooWhile < 100) { - //Iterated 99 times, fooWhile 0->99 + //Iterated 100 times, fooWhile 0->99 fooWhile++; } |