From 7484d7f4af57ac5f6fb9bb8661f629c16863bd8f Mon Sep 17 00:00:00 2001 From: Robson Couto Date: Sat, 4 Nov 2017 16:22:57 -0300 Subject: [PATCH] Minor fix in example code comment --- Language/Functions/Characters/isPunct.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Language/Functions/Characters/isPunct.adoc b/Language/Functions/Characters/isPunct.adoc index bbafc97c9..779776b94 100644 --- a/Language/Functions/Characters/isPunct.adoc +++ b/Language/Functions/Characters/isPunct.adoc @@ -51,7 +51,7 @@ Analyse if a char is punctuation (that is a comma, a semicolon, an exlamation ma [source,arduino] ---- -if (isPunct(this)) // tests if this is a letter +if (isPunct(this)) // tests if this is a punctuation character { Serial.println("The character is a punctuation"); } @@ -80,4 +80,4 @@ else * #LANGUAGE# link:../../communication/serial/read[read()] -- -// SEE ALSO SECTION ENDS \ No newline at end of file +// SEE ALSO SECTION ENDS