From 719227b73354aa07dddc8af1184351f4933d425c Mon Sep 17 00:00:00 2001 From: Sunny Date: Thu, 16 May 2019 12:19:24 +0530 Subject: [PATCH] Made correction in the output of println function when it prints an integer string. (#27034) --- guide/english/kotlin/strings/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/kotlin/strings/index.md b/guide/english/kotlin/strings/index.md index 74cbed4936..7452b40d78 100644 --- a/guide/english/kotlin/strings/index.md +++ b/guide/english/kotlin/strings/index.md @@ -258,7 +258,7 @@ println(9 + 10) Output: ```shell -"910" +910 // Here 910 is a string value. 19 ```