Skip to content

Commit f5355e8

Browse files
authored
Fix in example code.
Fixed the function name in the example code. This one was left unnoticed in my previous commit. There may be other similar bugs in other pages in the Character section. I am catching them as I translate the reference to Portuguese.
1 parent 68fe5fc commit f5355e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Functions/Characters/isUpperCase.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ 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 an upeer case letter
54+
if (isUpperCase(this)) // tests if this is an upeer case letter
5555
{
5656
Serial.println("The character is upper case");
5757
}

0 commit comments

Comments
 (0)