diff options
author | Andrew Gallasch <andrewgallasch@gmail.com> | 2016-10-27 23:22:49 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-27 23:22:49 +1030 |
commit | 2040dfc83ee42ec93fa73c112d6b6be2a627bc19 (patch) | |
tree | b8ed06c5dfdacd5d17ad166bd7899dd5095ac98b /java.html.markdown | |
parent | 78a4ae7da90139fecb2add55722ae7a54f43c593 (diff) |
Rename duplicate fooInt
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 6487d862..340aae80 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -102,7 +102,7 @@ public class LearnJava { // Integer - 32-bit signed two's complement integer // (-2,147,483,648 <= int <= 2,147,483,647) - int fooInt = 1; + int bazInt = 1; // Long - 64-bit signed two's complement integer // (-9,223,372,036,854,775,808 <= long <= 9,223,372,036,854,775,807) |