summaryrefslogtreecommitdiffhomepage
path: root/java.html.markdown
diff options
context:
space:
mode:
authorAndrew Gallasch <andrewgallasch@gmail.com>2017-10-28 15:36:34 +1030
committerGitHub <noreply@github.com>2017-10-28 15:36:34 +1030
commit56a82546e9196a94a0085eae0abd0578702a578f (patch)
tree2877885fc3b7110f2755872f6f108292e5a05dc6 /java.html.markdown
parentb443f3c7f24bba154314698062f25b67f4100cca (diff)
Improve comment about final modifier
Diffstat (limited to 'java.html.markdown')
-rw-r--r--java.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown
index 7b59b085..73e4bd2e 100644
--- a/java.html.markdown
+++ b/java.html.markdown
@@ -173,7 +173,7 @@ public class LearnJava {
// Char - A single 16-bit Unicode character
char fooChar = 'A';
- // final variables can't be reassigned to another object,
+ // final variables can't be reassigned,
final int HOURS_I_WORK_PER_WEEK = 9001;
// but they can be initialized later.
final double E;