Skip to content

Commit

Permalink
doc: Nudge formatting to make json generator happy
Browse files Browse the repository at this point in the history
Starting a line with `**bold**` text makes it think that it's a link,
and get confused.

This should really be fixed properly in the doc generator, but for now,
it's not a major issue.  It's probably just a matter of updating marked.
  • Loading branch information
isaacs committed Dec 21, 2012
1 parent f119eff commit 9829814
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/api/stream.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ initialized.
All Readable stream implementations must provide a `_read` method
to fetch data from the underlying resource.

**This function MUST NOT be called directly.** It should be
Note: **This function MUST NOT be called directly.** It should be
implemented by child classes, and called by the internal Readable
class methods only.

Expand Down Expand Up @@ -296,7 +296,7 @@ initialized.
All Writable stream implementations must provide a `_write` method to
send data to the underlying resource.

**This function MUST NOT be called directly.** It should be
Note: **This function MUST NOT be called directly.** It should be
implemented by child classes, and called by the internal Writable
class methods only.

Expand Down Expand Up @@ -432,7 +432,7 @@ initialized.
All Transform stream implementations must provide a `_transform`
method to accept input and produce output.

**This function MUST NOT be called directly.** It should be
Note: **This function MUST NOT be called directly.** It should be
implemented by child classes, and called by the internal Transform
class methods only.

Expand All @@ -458,7 +458,7 @@ your own extension classes.
* `callback` {Function} Call this function (optionally with an error
argument) when you are done flushing any remaining data.

**This function MUST NOT be called directly.** It MAY be implemented
Note: **This function MUST NOT be called directly.** It MAY be implemented
by child classes, and if so, will be called by the internal Transform
class methods only.

Expand Down

0 comments on commit 9829814

Please sign in to comment.