doc: make the abbreviation 1MM clear
authorIvan Yan <yan.2314@gmail.com>
Thu, 25 Jun 2015 02:21:13 +0000 (10:21 +0800)
committercjihrig <cjihrig@gmail.com>
Thu, 25 Jun 2015 15:42:09 +0000 (11:42 -0400)
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>
doc/api/stream.markdown

index 12f9907..a7a78f2 100644 (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;