1 Star 0 Fork 0

MrStack / nodeinpractice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ERRATA.md 680 Bytes
一键复制 编辑 原始数据 按行查看 历史
MrStack 提交于 2018-11-28 08:44 . init

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');
JavaScript
1
https://gitee.com/mrstack/nodeinpractice.git
git@gitee.com:mrstack/nodeinpractice.git
mrstack
nodeinpractice
nodeinpractice
master

搜索帮助