diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2020-02-02 15:13:28 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 15:13:28 +0530 |
commit | 8eb11a89a7fc84dde15544c6f7ec99a8f44b0c9f (patch) | |
tree | 7605022884b652f7acf879328887a9d191d3ef58 /java.html.markdown | |
parent | ab5a1953e77288ca27bd7b4c931d8bb2e79a9966 (diff) | |
parent | f80889ed47ae42ca4ea2b8118e2b3c48c37eeb9c (diff) |
Merge branch 'master' into master
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 4f45a268..79769352 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -381,7 +381,7 @@ public class LearnJava { do { System.out.println(fooDoWhile); // Increment the counter - // Iterated 99 times, fooDoWhile 0->99 + // Iterated 100 times, fooDoWhile 0->99 fooDoWhile++; } while(fooDoWhile < 100); System.out.println("fooDoWhile Value: " + fooDoWhile); |