diff options
author | Andrew Gallasch <andrewgallasch@gmail.com> | 2017-10-28 15:37:39 +1030 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-28 15:37:39 +1030 |
commit | d5ea29ce9f3a8072e7b33eb7d56457a3fab9e3aa (patch) | |
tree | 2877885fc3b7110f2755872f6f108292e5a05dc6 | |
parent | b443f3c7f24bba154314698062f25b67f4100cca (diff) | |
parent | 56a82546e9196a94a0085eae0abd0578702a578f (diff) |
Merge pull request #2981 from adambard/bemusementpark-patch-1
Improve comment about final modifier
-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 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; |