Skip to content

Commit 86a39ff

Browse files
author
Stefania
authored
Merge pull request #167 from robsoncouto/patch-4
Fixes in the example code
2 parents 404bbd0 + f5355e8 commit 86a39ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Language/Functions/Characters/isUpperCase.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Analyse if a char is upper case (that is a letter in upper case). Returns true i
5151

5252
[source,arduino]
5353
----
54-
if (isAlpha(this)) // tests if this is a letter
54+
if (isUpperCase(this)) // tests if this is an upeer case letter
5555
{
56-
Serial.println("The character is UPPER case");
56+
Serial.println("The character is upper case");
5757
}
5858
else
5959
{
@@ -80,4 +80,4 @@ else
8080
* #LANGUAGE# link:../../communication/serial/read[read()]
8181

8282
--
83-
// SEE ALSO SECTION ENDS
83+
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)