Skip to content

Commit 81ce9f3

Browse files
authored
Merge pull request #970 from jacobq/master
Flipped ByteLength & Delimiter descriptions in doc
2 parents d269911 + bd022bc commit 81ce9f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/parsers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
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.
77
* @name module:serialport.parsers
88
* @type {object}
9-
* @property {Class} [ByteLength] is a transform stream that emits data each time a byte sequence is received.
10-
* @property {Class} [Delimiter] is a transform stream that emits data as a buffer after a specific number of bytes are received.
9+
* @property {Class} [ByteLength] is a transform stream that emits data as a buffer after a specific number of bytes are received.
10+
* @property {Class} [Delimiter] is a transform stream that emits data each time a byte sequence is received.
1111
* @property {Class} [Readline] is a transform stream that emits data after a newline delimiter is received.
1212
* @example
1313
```js

0 commit comments

Comments
 (0)