Skip to content

Fixes in the example code #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Language/Functions/Characters/isUpperCase.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ Analyse if a char is upper case (that is a letter in upper case). Returns true i

[source,arduino]
----
if (isAlpha(this)) // tests if this is a letter
if (isUpperCase(this)) // tests if this is an upeer case letter
{
Serial.println("The character is UPPER case");
Serial.println("The character is upper case");
}
else
{
Expand All @@ -80,4 +80,4 @@ else
* #LANGUAGE# link:../../communication/serial/read[read()]

--
// SEE ALSO SECTION ENDS
// SEE ALSO SECTION ENDS