diff --git a/lib/parsers.js b/lib/parsers.js index 368e6bfc7..632d466f4 100644 --- a/lib/parsers.js +++ b/lib/parsers.js @@ -6,8 +6,8 @@ To use any of the parsers you need to create them and then pipe the serialport to the parser. Be sure not to write to the parser but to the SerialPort object. * @name module:serialport.parsers * @type {object} - * @property {Class} [ByteLength] is a transform stream that emits data each time a byte sequence is received. - * @property {Class} [Delimiter] is a transform stream that emits data as a buffer after a specific number of bytes are received. + * @property {Class} [ByteLength] is a transform stream that emits data as a buffer after a specific number of bytes are received. + * @property {Class} [Delimiter] is a transform stream that emits data each time a byte sequence is received. * @property {Class} [Readline] is a transform stream that emits data after a newline delimiter is received. * @example ```js