From ac6d19d6713bf1831eaf45ea388c6d543565f87c Mon Sep 17 00:00:00 2001
From: stephen-hero <78870893+stephen-hero@users.noreply.github.com>
Date: Tue, 19 Dec 2023 15:05:43 +0200
Subject: [PATCH] Update task.md
language checked
---
Hangman/isCorrectInputFunction/task.md | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/Hangman/isCorrectInputFunction/task.md b/Hangman/isCorrectInputFunction/task.md
index 54d8ef47..0ce8ae93 100644
--- a/Hangman/isCorrectInputFunction/task.md
+++ b/Hangman/isCorrectInputFunction/task.md
@@ -1,9 +1,9 @@
-In the nest two tasks we will implement functions to be able to check the user input if it is correct.
+In the next two tasks, we will implement functions to verify if the user input if it is correct.
### Task
-Implement the `isCorrectInput` function, that accepts a string `userInput`
-and checks if it is correct: 1) the length of the `userInput` is 1 and 2) the `userInput` is an english letter.
+Implement the `isCorrectInput` function, which accepts a string `userInput`
+and checks if it is correct: 1) the length of `userInput` is 1, and 2) `userInput` is an English letter.
If `userInput` is correct, the function returns `true`, and `false` otherwise.
@@ -20,7 +20,7 @@ This function should have the following behavior:
The length of your guess should be 1! Try again!
```
-- inform the user if the input it not an english letter:
+- inform the user if the input is not an English letter:
```text
You should input only English letters! Try again!
```
@@ -35,7 +35,7 @@ If you have any difficulties, **hints will help you solve this task**.
### Hints
-
+
You can use `length` to get the number of letters in `userInput`:
```kotlin
@@ -47,11 +47,11 @@ Then, you need to compare it with `1`.
The built-in function
`isLetter` checks if the passed symbol
-is an English letter and can be applied only to one letter at once:
+is an English letter, and it can be applied only to one letter at a time:
```kotlin
-println("AB12"[0].isLetter()) // true, since `A` is an english letter
-println("AB12"[1].isLetter()) // true, since `B` is an english letter
-println("AB12"[2].isLetter()) // true, since `1` is NOT an english letter
-println("AB12"[3].isLetter()) // true, since `2` is NOT an english letter
+println("AB12"[0].isLetter()) // true, since `A` is an English letter
+println("AB12"[1].isLetter()) // true, since `B` is an English letter
+println("AB12"[2].isLetter()) // false, since `1` is NOT an English letter
+println("AB12"[3].isLetter()) // false, since `2` is NOT an English letter
```