From fbb7ea38a1530d2e4cca6bce7f3db6b392e90ce1 Mon Sep 17 00:00:00 2001 From: mvalipour Date: Mon, 18 Nov 2013 22:58:27 +0000 Subject: Fix while loop iterator incorrect count The while loop is repeated 100 times not 99 times. 0~99 inclusive. --- csharp.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; } -- cgit v1.2.3