Skip to content

Commit 292bcc0

Browse files
author
smellai
committed
minor fix example comment
1 parent 1313981 commit 292bcc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Language/Functions/Characters/isDigit.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Analyse if a char is a digit (that is a number). Returns true if thisChar is a n
2626
=== Syntax
2727
[source,arduino]
2828
----
29-
`isDigit(thisChar)`
29+
isDigit(thisChar)
3030
----
3131

3232
[float]
@@ -51,7 +51,7 @@ Analyse if a char is a digit (that is a number). Returns true if thisChar is a n
5151

5252
[source,arduino]
5353
----
54-
if (isDigit(this)) // tests if this is a letter
54+
if (isDigit(this)) // tests if this is a digit
5555
{
5656
Serial.println("The character is a number");
5757
}

0 commit comments

Comments
 (0)