From 704e02e5a843aed54138e3a582b6ed6c9dd96360 Mon Sep 17 00:00:00 2001 From: Pav01Founders <92518689+Pav01Founders@users.noreply.github.com> Date: Thu, 14 Oct 2021 11:41:11 +0100 Subject: [PATCH 1/2] Update README.md Updated instructions to fix any grammar errors. --- subjects/isalpha/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/isalpha/README.md b/subjects/isalpha/README.md index 87e537aca..494cd852f 100644 --- a/subjects/isalpha/README.md +++ b/subjects/isalpha/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns `true` if the `string` passed in parameter only contains alphanumerical characters or is empty, and returns `false` otherwise. +Write a function that returns `true` if the `string` passed as the parameter contains alphanumerical characters; returns `false` otherwise. ### Expected function From 805a7adb716d4002a9a15af6f81c675b8c7dda10 Mon Sep 17 00:00:00 2001 From: OGordoo <39002518+OGordoo@users.noreply.github.com> Date: Wed, 27 Oct 2021 16:56:49 +0100 Subject: [PATCH 2/2] changing sentence structure --- subjects/isalpha/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/isalpha/README.md b/subjects/isalpha/README.md index 494cd852f..241a26204 100644 --- a/subjects/isalpha/README.md +++ b/subjects/isalpha/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns `true` if the `string` passed as the parameter contains alphanumerical characters; returns `false` otherwise. +Write a function that returns `true` if the `string` passed as the parameter only contains alphanumerical characters or is empty, otherwise, and returns `false`. ### Expected function