Skip to content

Commit 9829814

Browse files
committed
doc: Nudge formatting to make json generator happy
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.
1 parent f119eff commit 9829814

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/api/stream.markdown

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ initialized.
112112
All Readable stream implementations must provide a `_read` method
113113
to fetch data from the underlying resource.
114114

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)