We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1313981 commit 292bcc0Copy full SHA for 292bcc0
Language/Functions/Characters/isDigit.adoc
@@ -26,7 +26,7 @@ Analyse if a char is a digit (that is a number). Returns true if thisChar is a n
26
=== Syntax
27
[source,arduino]
28
----
29
-`isDigit(thisChar)`
+isDigit(thisChar)
30
31
32
[float]
@@ -51,7 +51,7 @@ Analyse if a char is a digit (that is a number). Returns true if thisChar is a n
51
52
53
54
-if (isDigit(this)) // tests if this is a letter
+if (isDigit(this)) // tests if this is a digit
55
{
56
Serial.println("The character is a number");
57
}
0 commit comments