第十四章 流式编程 章节:在 map() 中组合流 最后一个例子 FileToWordsRegexp.java 中 输出应该是 ``` Not much of a cheese shop really is it ``` 这里漏掉了第二行,第二行对应例子中代码: ``` FileToWords.stream("Cheese.dat") .skip(7) .limit(2) .forEach(s -> System.out.format("%s ", s)); ```