From 005a9b888876d4ce99c15fe36dd7e4ec0bb6b929 Mon Sep 17 00:00:00 2001 From: stephen-hero <78870893+stephen-hero@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:00:51 +0200 Subject: [PATCH] Update task.md language checked --- AlmostDone/linesFunction/task.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AlmostDone/linesFunction/task.md b/AlmostDone/linesFunction/task.md index cbdd3f75..d8857417 100644 --- a/AlmostDone/linesFunction/task.md +++ b/AlmostDone/linesFunction/task.md @@ -7,13 +7,13 @@ Second line ``` The string will be converted into a list with two strings: `First line` and `Second line`. -This function is better than `split`, since under the hood this function takes into account -new lines symbols from different operating systems: +This function is better than `split`, since it considers +newline symbols from various operating systems under the hood: ```kotlin """First line Second line -""".lines() // works on all OS +""".lines() // works on all OSs ``` VS ```kotlin