From fe14f0ba6e73b94d471b3fcdea6c0aa2dfa91b3e Mon Sep 17 00:00:00 2001 From: Pav01Founders <92518689+Pav01Founders@users.noreply.github.com> Date: Thu, 14 Oct 2021 11:33:50 +0100 Subject: [PATCH 1/2] Update README.md Updated grammar mistakes to make instructions easier to read. --- subjects/isupper/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/isupper/README.md b/subjects/isupper/README.md index e582f3889..2df4ccfcc 100644 --- a/subjects/isupper/README.md +++ b/subjects/isupper/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns `true` if the `string` passed in parameter only contains uppercase characters, and that returns `false` otherwise. +Write a function that returns 'true' if the 'string' passed as parameter contains only the uppercase characters; returns 'false' otherwise. ### Expected function From 369506868a3169ba8e0323afce36086e43901774 Mon Sep 17 00:00:00 2001 From: OGordoo <39002518+OGordoo@users.noreply.github.com> Date: Wed, 27 Oct 2021 17:00:58 +0100 Subject: [PATCH 2/2] changing sentence structure --- subjects/isupper/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/isupper/README.md b/subjects/isupper/README.md index 2df4ccfcc..8550b0f3e 100644 --- a/subjects/isupper/README.md +++ b/subjects/isupper/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns 'true' if the 'string' passed as parameter contains only the uppercase characters; returns 'false' otherwise. +Write a function that returns `true` if the `string` passed as parameter contains only uppercase characters, otherwise, returns `false`. ### Expected function