From c370bd3aea69fdc8d7a8c33f749a512664f043be Mon Sep 17 00:00:00 2001 From: Ivan Yan Date: Thu, 25 Jun 2015 10:21:13 +0800 Subject: [PATCH] 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 Reviewed-By: Rich Trott --- doc/api/stream.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown index 12f9907..a7a78f2 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -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; -- 2.7.4