From eca5064956e92840c8eb5b31cb50e4348e80503b Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 24 May 2022 17:35:18 +0300 Subject: [PATCH] docs(capitalizing): correct grammar --- subjects/capitalizing/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/capitalizing/README.md b/subjects/capitalizing/README.md index fc58d000..ed38d873 100644 --- a/subjects/capitalizing/README.md +++ b/subjects/capitalizing/README.md @@ -2,11 +2,11 @@ ### Instructions -Complete the `capitalize_first` **function** which turns the first letter of a string to uppercase. +Complete the `capitalize_first` **function** which converts the first letter of the string to uppercase. -Complete the `title_case` **function** which turns the first letter of each word in a string to uppercase. +Complete the `title_case` **function** which converts the first letter of each word in a string to uppercase. -Complete the `change_case` **function** which turns the uppercase letters of a string into lowercase and the lowercase letters into uppercase. +Complete the `change_case` **function** which converts the uppercase letters of a string into lowercase, and the lowercase to uppercase. ### Expected Functions