Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 680 Bytes

ERRATA.md

File metadata and controls

19 lines (12 loc) · 680 Bytes

Node In Practice Errata

If you find any any errors in Node.js in Practice not listed below, or just find something that you think is not well explained, it would be most appreciated if you would post in the book's Google Group forum so that they may be collected here for everyone's benefit. Thanks!

Formatting of newline characters

Some newline (\n) characters were truncated to simply an n character during production in various code examples in the book. For instance:

Page 97, Listing 5.6

lineIndex = this._buffer.indexOf('n');

should be

lineIndex = this._buffer.indexOf('\n');