summaryrefslogtreecommitdiffhomepage
path: root/kotlin.html.markdown
diff options
context:
space:
mode:
authorPablo Najt <pablonajt@gmail.com>2017-03-24 14:53:41 -0300
committerven <vendethiel@hotmail.fr>2017-03-24 18:53:41 +0100
commitc1d773eab766891c8c9f5820bf18c8fafa6a8d5e (patch)
treeb5592f50f4314ea12b57a81446038619dd809c51 /kotlin.html.markdown
parent29f41f2802490cfa001a6170b98aaf715a89e456 (diff)
[kotlin/all] Rename variable fooMutableDate to fooMutableData (#2688) (#2689)
Diffstat (limited to 'kotlin.html.markdown')
-rw-r--r--kotlin.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/kotlin.html.markdown b/kotlin.html.markdown
index d1f1aae6..a7f26126 100644
--- a/kotlin.html.markdown
+++ b/kotlin.html.markdown
@@ -189,13 +189,13 @@ fun helloWorld(val name : String) {
// The "with" function is similar to the JavaScript "with" statement.
data class MutableDataClassExample (var x: Int, var y: Int, var z: Int)
- val fooMutableDate = MutableDataClassExample(7, 4, 9)
- with (fooMutableDate) {
+ val fooMutableData = MutableDataClassExample(7, 4, 9)
+ with (fooMutableData) {
x -= 2
y += 2
z--
}
- println(fooMutableDate) // => MutableDataClassExample(x=5, y=6, z=8)
+ println(fooMutableData) // => MutableDataClassExample(x=5, y=6, z=8)
/*
We can create a list using the "listOf" function.