Skip to content

Commit 910088d

Browse files
authored
Merge PR Got rid of the visible quote characters #471 from lemio/master
Got rid of the quote characters in visible on the Arduino website
2 parents fa3060d + b9b565e commit 910088d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

Language/Functions/Characters/isAlphaNumeric.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is alphanumeric (that is a letter or a numbers). Returns true
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isAlphaNumeric(thisChar)`
28+
isAlphaNumeric(thisChar)
2929
----
3030

3131
[float]
@@ -79,4 +79,4 @@ else
7979
* #LANGUAGE# link:../../communication/serial/read[read()]
8080

8181
--
82-
// SEE ALSO SECTION ENDS
82+
// SEE ALSO SECTION ENDS

Language/Functions/Characters/isAscii.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is Ascii. Returns true if thisChar contains an Ascii character
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isAscii(thisChar)`
28+
isAscii(thisChar)
2929
----
3030

3131
[float]
@@ -79,4 +79,4 @@ else
7979
* #LANGUAGE# link:../../communication/serial/read[read()]
8080

8181
--
82-
// SEE ALSO SECTION ENDS
82+
// SEE ALSO SECTION ENDS

Language/Functions/Characters/isControl.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is a control character. Returns true if thisChar is a control
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isControl(thisChar)`
28+
isControl(thisChar)
2929
----
3030

3131
[float]
@@ -79,4 +79,4 @@ else
7979
* #LANGUAGE# link:../../communication/serial/read[read()]
8080

8181
--
82-
// SEE ALSO SECTION ENDS
82+
// SEE ALSO SECTION ENDS

Language/Functions/Characters/isGraph.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is printable with some content (space is printable but has no
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isGraph(thisChar)`
28+
isGraph(thisChar)
2929
----
3030

3131
[float]
@@ -79,4 +79,4 @@ else
7979
* #LANGUAGE# link:../../communication/serial/read[read()]
8080

8181
--
82-
// SEE ALSO SECTION ENDS
82+
// SEE ALSO SECTION ENDS

Language/Functions/Characters/isLowerCase.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is lower case (that is a letter in lower case). Returns true i
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isLowerCase(thisChar)`
28+
isLowerCase(thisChar)
2929
----
3030

3131
[float]

Language/Functions/Characters/isPrintable.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is printable (that is any character that produces an output, e
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isPrintable(thisChar)`
28+
isPrintable(thisChar)
2929
----
3030

3131
[float]

Language/Functions/Characters/isPunct.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is punctuation (that is a comma, a semicolon, an exlamation ma
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isPunct(thisChar)`
28+
isPunct(thisChar)
2929
----
3030

3131
[float]

Language/Functions/Characters/isSpace.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Analyse if a char is the space character. Returns true if thisChar contains the
2525
=== Syntax
2626
[source,arduino]
2727
----
28-
`isSpace(thisChar)`
28+
isSpace(thisChar)
2929
----
3030

3131
[float]

Language/Functions/Characters/isWhitespace.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Returns true if thisChar contains a white space.
2525
[float]
2626
=== Syntax
2727
[source,arduino]
28-
`isWhitespace(thisChar)`
28+
isWhitespace(thisChar)
2929

3030

3131
[float]

0 commit comments

Comments
 (0)