From 8d0d03714d7bfb3dcd2eff30bbc74b89569e05e7 Mon Sep 17 00:00:00 2001 From: stephen-hero <78870893+stephen-hero@users.noreply.github.com> Date: Tue, 26 Sep 2023 14:22:29 +0300 Subject: [PATCH] Update task.md language checked --- .../duckShopServerBuiltInFunctions/task.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/duckShopServer/duckShopServerBuiltInFunctions/task.md b/duckShopServer/duckShopServerBuiltInFunctions/task.md index c1516ed..6b14cae 100644 --- a/duckShopServer/duckShopServerBuiltInFunctions/task.md +++ b/duckShopServer/duckShopServerBuiltInFunctions/task.md @@ -1,10 +1,10 @@ -Kotlin has a reach standard library with the majority of different functions. -Usually, if you need to do something with your collection, you don't need to implement it since this -function already exists in the standard library. The functions can perform different things - -from obvious ones like find or handle something to very complex ones like sort your collection or perform aggregation operations. +Kotlin has a rich standard library with the lots of different functions. +Usually, if you need to do something with your collection, you don't need to implement it, since the +function already exists in the standard library. The functions can perform different things — +from obvious ones, like finding or handling something, to very complex ones, like sorting your collection or performing aggregation operations. -You can find all functions in the [official Kotlin documentation](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/). +You can find all available functions in the [official Kotlin documentation](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/). -In the rest of the steps in this project you will find tasks to implement something with the collections, -in the **Hints** section you will find the built-in functions that can do it. Let's try to find the necessary functions in the official documentation and only then check your guess with the hints. -The ability to search for something in the documentation is also a very important skill for programmers. \ No newline at end of file +In the rest of the steps in this project, you will find tasks to implement something on collections, and +in the **Hints** section, you will find the built-in functions that can do it. First, try to find the necessary functions in the official documentation and only then check your guess with the hints. +The ability to search for something in the documentation is also a very important skill for programmers.