Skip to content

Fixed markdown errors with chars after a code block. #702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Language/Functions/Communication/Serial/readBytes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ title: Serial.readBytes()
[float]
=== Parameters
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
`buffer`: the buffer to store the bytes in. Allowed data types: or array of `char` or `byte`s. +
`buffer`: the buffer to store the bytes in. Allowed data types: or array of `char` or `byte`. +
`length`: the number of bytes to read. Allowed data types: `int`.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Serial.readBytesUntil() reads characters from the serial buffer into an array. T
=== Parameters
`_Serial_`: serial port object. See the list of available serial ports for each board on the link:../../serial[Serial main page]. +
`character`: the character to search for. Allowed data types: `char`. +
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`s. +
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
`length`: the number of bytes to read. Allowed data types: `int`.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This function is part of the Stream class, and can be called by any class that i
[float]
=== Parameters
`stream`: an instance of a class that inherits from Stream. +
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`s. +
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
`length`: the number of bytes to read. Allowed data types: `int`.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This function is part of the Stream class, and can be called by any class that i
=== Parameters
`stream`: an instance of a class that inherits from Stream. +
`character`: the character to search for. Allowed data types: `char`. +
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`s. +
`buffer`: the buffer to store the bytes in. Allowed data types: array of `char` or `byte`. +
`length`: the number of bytes to read. Allowed data types: `int`.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Copies the String's characters to the supplied buffer.
[float]
=== Parameters
`myString`: a variable of type `String`. +
`buf`: the buffer to copy the characters into. Allowed data types: array of `byte`s. +
`buf`: the buffer to copy the characters into. Allowed data types: array of `byte`. +
`len`: the size of the buffer. Allowed data types: `unsigned int`.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Copies the String's characters to the supplied buffer.
[float]
=== Parameters
`myString`: a variable of type `String`. +
`buf`: the buffer to copy the characters into. Allowed data types: array of `char`s. +
`buf`: the buffer to copy the characters into. Allowed data types: array of `char`. +
`len`: the size of the buffer. Allowed data types: `unsigned int`.


Expand Down