1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-10 08:44:28 +02:00

Merge pull request #507 from Jakehp/patch-1

Issue #163 fix
This commit is contained in:
Nami-Doc
2014-01-30 11:02:58 -08:00

View File

@@ -191,7 +191,7 @@ public class LearnJava {
{ {
//System.out.println(fooWhile); //System.out.println(fooWhile);
//Increment the counter //Increment the counter
//Iterated 99 times, fooWhile 0->99 //Iterated 100 times, fooWhile 0,1,2...99
fooWhile++; fooWhile++;
} }
System.out.println("fooWhile Value: " + fooWhile); System.out.println("fooWhile Value: " + fooWhile);