From 35aec4c14dee9f341f69862e6fea6033de7a86cf Mon Sep 17 00:00:00 2001 From: Richard Sun Date: Tue, 5 Jan 2016 03:12:56 -0800 Subject: [PATCH] doc: fix numbering in stream.markdown PR-URL: https://github.com/nodejs/node/pull/4538 Reviewed-By: Colin Ihrig --- 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 9ab35254bad21b..76d96233ac4bde 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -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: