doc: fix numbering in stream.markdown
authorRichard Sun <rsun@media.ucla.edu>
Tue, 5 Jan 2016 11:12:56 +0000 (03:12 -0800)
committerMyles Borins <mborins@us.ibm.com>
Tue, 19 Jan 2016 19:52:36 +0000 (11:52 -0800)
PR-URL: https://github.com/nodejs/node/pull/4538
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
doc/api/stream.markdown

index 9ab3525..76d9623 100644 (file)
@@ -723,7 +723,7 @@ To implement any sort of stream, the pattern is the same:
    [`util.inherits`][] method is particularly helpful for this.)
 2. Call the appropriate parent class constructor in your constructor,
    to be sure that the internal mechanisms are set up properly.
-2. Implement one or more specific methods, as detailed below.
+3. Implement one or more specific methods, as detailed below.
 
 The class to extend and the method(s) to implement depend on the sort
 of stream class you are writing: