summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJake Prather <JakeHP@Zoho.com>2014-01-30 12:36:19 -0600
committerJake Prather <JakeHP@Zoho.com>2014-01-30 12:36:19 -0600
commit1e0d5abebac015808e2ac22ac8ba741b05dc8f6f (patch)
treeefca2d7d715990c3f41f6fd222cb9baae4e1d9b5
parent0b2a283db4bc622aaca3c23daa3c39dfd9297db1 (diff)
Issue#163
https://github.com/adambard/learnxinyminutes-docs/issues/163
-rw-r--r--java.html.markdown2
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);