From 19fefd682e77eddebdea35c9668cf35307bedc68 Mon Sep 17 00:00:00 2001 From: Robert Zacharias Date: Tue, 3 Sep 2019 22:24:32 -0400 Subject: [PATCH] removed unspaced pluralization of data type (bytes) which caused MD parse error --- Language/Functions/Communication/Serial/readBytesUntil.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Functions/Communication/Serial/readBytesUntil.adoc b/Language/Functions/Communication/Serial/readBytesUntil.adoc index 103ea47d7..efe33829b 100644 --- a/Language/Functions/Communication/Serial/readBytesUntil.adoc +++ b/Language/Functions/Communication/Serial/readBytesUntil.adoc @@ -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`.