summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEsteve Aguilera <esteve@fewlaps.com>2017-06-16 09:40:32 +0200
committerven <vendethiel@hotmail.fr>2017-06-16 09:40:32 +0200
commit1adf002021e9c51b721c0f1f14a5fa57bb8d6027 (patch)
tree0a2f277d9489f5a3ae6ed8153a453d70af887dc4
parent3983b8c35ad659090dba9c423f443f705e782407 (diff)
Fix typo (#2757)
-rw-r--r--ca-es/kotlin-ca.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ca-es/kotlin-ca.html.markdown b/ca-es/kotlin-ca.html.markdown
index 5423ef8c..cd05a808 100644
--- a/ca-es/kotlin-ca.html.markdown
+++ b/ca-es/kotlin-ca.html.markdown
@@ -109,7 +109,7 @@ fun helloWorld(val name : String) {
println("S'han rebut ${names.size} arguments")
}
varargExample() // => S'han rebut 0 elements
- varargExample(1) // => S'han rebut 1 elements
+ varargExample(1) // => S'ha rebut 1 element
varargExample(1, 2, 3) // => S'han rebut 3 elements
/*