Skip to content

Commit 353e5c2

Browse files
authored
Merge pull request #702 from SeppPenner/master
Fixed markdown errors with chars after a code block.
2 parents 66889ab + fccb00e commit 353e5c2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Language/Functions/Communication/Serial/readBytes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ title: Serial.readBytes()
3030
[float]
3131
=== Parameters
3232
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
33-
`buffer`: the buffer to store the bytes in. Allowed data types: or array of `char` or `byte`s. +
33+
`buffer`: the buffer to store the bytes in. Allowed data types: or array of `char` or `byte`. +
3434
`length`: the number of bytes to read. Allowed data types: `int`.
3535

3636

Language/Functions/Communication/Stream/streamReadBytes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This function is part of the Stream class, and can be called by any class that i
3030
[float]
3131
=== Parameters
3232
`stream`: an instance of a class that inherits from Stream. +
33-
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`s. +
33+
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
3434
`length`: the number of bytes to read. Allowed data types: `int`.
3535

3636

Language/Functions/Communication/Stream/streamReadBytesUntil.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This function is part of the Stream class, and can be called by any class that i
3131
=== Parameters
3232
`stream`: an instance of a class that inherits from Stream. +
3333
`character`: the character to search for. Allowed data types: `char`. +
34-
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`s. +
34+
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
3535
`length`: the number of bytes to read. Allowed data types: `int`.
3636

3737

Language/Variables/Data Types/String/Functions/getBytes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Copies the String's characters to the supplied buffer.
3030
[float]
3131
=== Parameters
3232
`myString`: a variable of type `String`. +
33-
`buf`: the buffer to copy the characters into. Allowed data types: array of `byte`s. +
33+
`buf`: the buffer to copy the characters into. Allowed data types: array of `byte`. +
3434
`len`: the size of the buffer. Allowed data types: `unsigned int`.
3535

3636

Language/Variables/Data Types/String/Functions/toCharArray.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Copies the String's characters to the supplied buffer.
3030
[float]
3131
=== Parameters
3232
`myString`: a variable of type `String`. +
33-
`buf`: the buffer to copy the characters into. Allowed data types: array of `char`s. +
33+
`buf`: the buffer to copy the characters into. Allowed data types: array of `char`. +
3434
`len`: the size of the buffer. Allowed data types: `unsigned int`.
3535

3636

0 commit comments

Comments
 (0)