Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/stream.markdown')
-rw-r--r--doc/api/stream.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown
index 12f99078aa1..a7a78f229ed 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;