Skip to content

Commit 68fe5fc

Browse files
authored
Fixes in the example code
I changed UPPER to upper too. I don't know if it was there in upper case to give some silly emphasis.
1 parent 5cab6fd commit 68fe5fc

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 (isAlpha(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)