summaryrefslogtreecommitdiffhomepage
path: root/scala.html.markdown
diff options
context:
space:
mode:
authorHa-Duong, NGUYEN <cmpitg@gmail.com>2015-08-03 15:49:15 +0700
committerHa-Duong, NGUYEN <cmpitg@gmail.com>2015-08-03 15:49:15 +0700
commit8c06438ec9aec991b78bbd49d2343dc820da7669 (patch)
treef7d6b505b412e078f61b3bc5eb32ccbaf6b20de3 /scala.html.markdown
parent9ddf69a14da14c0d29abb5a18b4d2dfd5a39c7b2 (diff)
scala: correct format
Diffstat (limited to 'scala.html.markdown')
-rw-r--r--scala.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/scala.html.markdown b/scala.html.markdown
index 4121dc9b..03d80043 100644
--- a/scala.html.markdown
+++ b/scala.html.markdown
@@ -48,7 +48,7 @@ println(10)
print("Hello world")
// Declaring values is done using either var or val.
-// val declarations are immutable, whereas var's are mutable. Immutability is
+// val declarations are immutable, whereas vars are mutable. Immutability is
// a good thing.
val x = 10 // x is now 10
x = 20 // error: reassignment to val