summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine <ap@oire.me>2021-01-30 12:49:53 +0100
committerGitHub <noreply@github.com>2021-01-30 12:49:53 +0100
commit80a17c6bb982c20eb5128f1166a8acd6cd538134 (patch)
treeedbf262e96b880ffc0a42ab710cb364c5b82ba4f
parentc5f47f717e054d2196586edbb8d78bc8fe4dda2e (diff)
parente133062e353ae2e25daf50bb41f87f6896d2ae20 (diff)
Merge pull request #4095 from alecks/master
[kotlin/en] fooData was mistaken for fooCopy in a comment
-rw-r--r--kotlin.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/kotlin.html.markdown b/kotlin.html.markdown
index 5bbf6847..9394cc02 100644
--- a/kotlin.html.markdown
+++ b/kotlin.html.markdown
@@ -180,7 +180,7 @@ fun helloWorld(val name : String) {
// destructuring in "for" loop
for ((a, b, c) in listOf(fooData)) {
- println("$a $b $c") // => 1 100 4
+ println("$a $b $c") // => 1 2 4
}
val mapData = mapOf("a" to 1, "b" to 2)