@@ -81,7 +81,7 @@ To test the results, try opening each compressed file. The file compressed by
8181the [ ` zip(1) ` ] [ ]  tool will notify you the file is corrupt, whereas the
8282compression finished by [ ` Stream ` ] [ ]  will decompress without error.
8383
84- >  ** Note: **   In this example, we use ` .pipe() `  to get the data source from one end
84+ >  In this example, we use ` .pipe() `  to get the data source from one end
8585>  to the other. However, notice there are no proper error handlers attached. If
8686>  a chunk of data were to fail to be properly received, the ` Readable `  source or
8787>  ` gzip `  stream will not be destroyed. [ ` pump ` ] [ ]  is a utility tool that would
@@ -354,7 +354,7 @@ Well the answer is simple: Node.js does all of this automatically for you.
354354That's so great! But also not so great when we are trying to understand how to
355355implement our own custom streams.
356356
357- >  ** Note: **   In most machines, there is a byte size that determines when a buffer
357+ >  In most machines, there is a byte size that determines when a buffer
358358>  is full (which will vary across different machines). Node.js allows you to set
359359>  your own custom [ ` highWaterMark ` ] [ ] , but commonly, the default is set to 16kb
360360>  (16384, or 16 for objectMode streams). In instances where you might
@@ -410,7 +410,7 @@ stream:
410410                                       +============+ 
411411``` 
412412
413- >  ** Note: **   If you are setting up a pipeline to chain together a few streams to
413+ >  If you are setting up a pipeline to chain together a few streams to
414414>  manipulate your data, you will most likely be implementing [ ` Transform ` ] [ ] 
415415>  stream.
416416
@@ -450,7 +450,7 @@ In general,
4504503 .  Streams changes between different Node.js versions, and the library you use.
451451Be careful and test things.
452452
453- >  ** Note: **   In regards to point 3, an incredibly useful package for building
453+ >  In regards to point 3, an incredibly useful package for building
454454>  browser streams is [ ` readable-stream ` ] [ ] . Rodd Vagg has written a
455455>  [ great blog post] [ ]  describing the utility of this library. In short, it
456456>  provides a type of automated graceful degradation for [ ` Readable ` ] [ ]  streams,
0 commit comments