diff options
author | Jake Prather <JakeHP@Zoho.com> | 2014-01-30 12:36:19 -0600 |
---|---|---|
committer | Jake Prather <JakeHP@Zoho.com> | 2014-01-30 12:36:19 -0600 |
commit | 1e0d5abebac015808e2ac22ac8ba741b05dc8f6f (patch) | |
tree | efca2d7d715990c3f41f6fd222cb9baae4e1d9b5 /java.html.markdown | |
parent | 0b2a283db4bc622aaca3c23daa3c39dfd9297db1 (diff) |
Issue#163
https://github.com/adambard/learnxinyminutes-docs/issues/163
Diffstat (limited to 'java.html.markdown')
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown index b4624d5e..1fbf6a21 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -191,7 +191,7 @@ public class LearnJava { { //System.out.println(fooWhile); //Increment the counter - //Iterated 99 times, fooWhile 0->99 + //Iterated 100 times, fooWhile 0,1,2...99 fooWhile++; } System.out.println("fooWhile Value: " + fooWhile); |