diff --git a/snippets/isLowerCase.md b/snippets/isLowerCase.md index 0e08b2dbb..b975de698 100644 --- a/snippets/isLowerCase.md +++ b/snippets/isLowerCase.md @@ -1,6 +1,6 @@ ### isLowerCase -Checks if the provided argument contains anything else than the lowerCase alphabets. If the second argument is provided to be true than numbers and other symbols are considered lowercase too. +Checks if the provided argument contains anything else than the lowercase alphabets. If the second argument is provided to be true than numbers and other symbols are considered lowercase too. ``` js const isLowerCase = (val,symbol = false) => { diff --git a/snippets/isUpperCase.md b/snippets/isUpperCase.md index 802eb0a97..3d4c74760 100644 --- a/snippets/isUpperCase.md +++ b/snippets/isUpperCase.md @@ -1,6 +1,6 @@ ### isUpperCase -Checks if the provided argument contains anything else than the upperCase alphabets. If the second argument is provided to be true than numbers and other symbols are considered uppercase too. +Checks if the provided argument contains anything else than the uppercase alphabets. If the second argument is provided to be true than numbers and other symbols are considered uppercase too. ``` js const isUpperCase = (val,symbol = false) => { if (symbol) return val === val.toUpperCase()