diff options
Diffstat (limited to 'java.html.markdown')
| -rw-r--r-- | java.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/java.html.markdown b/java.html.markdown index 12de0c73..772dc25d 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -83,11 +83,11 @@ public class LearnJava {          */          // Initialize a variable using <type> <name> = <val> -        int fooInt = 1; +        int barInt = 1;          // Initialize multiple variables of same type with same           // value <type> <name1>, <name2>, <name3> = <val> -        int fooInt1, fooInt2, fooInt3; -        fooInt1 = fooInt2 = fooInt3 = 1; +        int barInt1, barInt2, barInt3; +        barInt1 = barInt2 = barInt3 = 1;          /*          *  Variable types | 
