0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

doc: make the abbreviation 1MM clear

Refs: https://github.com/nodejs/io.js/pull/2050
PR-URL: https://github.com/nodejs/io.js/pull/2053
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
Ivan Yan 2015-06-25 10:21:13 +08:00 committed by cjihrig
parent 628a3ab093
commit c370bd3aea

View File

@ -527,7 +527,7 @@ event will indicate when it is appropriate to begin writing more data
to the stream.
```javascript
// Write the data to the supplied writable stream 1MM times.
// Write the data to the supplied writable stream one million times.
// Be attentive to back-pressure.
function writeOneMillionTimes(writer, data, encoding, callback) {
var i = 1000000;