From fb53b375fd5e6e914aae968d6cd410dfabc8aad9 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Thu, 20 Oct 2022 11:36:39 +0100 Subject: [PATCH] docs(iscapitalized): fix instructions --- subjects/iscapitalized/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/iscapitalized/README.md b/subjects/iscapitalized/README.md index 751a6f9e5..d3df81503 100644 --- a/subjects/iscapitalized/README.md +++ b/subjects/iscapitalized/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `IsCapitalized` that takes a `string` as an argument and returns `true` if each word in the `string` begins with either an uppercase letter or a non-alphabetic character. +Write a function `IsCapitalized()` that takes a `string` as an argument and returns `true` if each word in the `string` begins with either an uppercase letter or a non-alphabetic character. - If any of the words begin with a lowercase letter return `false`. - If the `string` is empty return `false`.