Update article.md

"such as browsers" -> "like in browsers"
This commit is contained in:
Peter Roche 2020-02-06 23:27:22 -07:00 committed by GitHub
parent 537c33493a
commit 9a4bc89d6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -360,4 +360,4 @@ Syntax differences between async and regular generators:
In web-development we often meet streams of data, when it flows chunk-by-chunk. For instance, downloading or uploading a big file.
We can use async generators to process such data. It's also noteworthy that in some environments, such as browsers, there's also another API called Streams, that provides special interfaces to work with such streams, to transform the data and to pass it from one stream to another (e.g. download from one place and immediately send elsewhere).
We can use async generators to process such data. It's also noteworthy that in some environments, like in browsers, there's also another API called Streams, that provides special interfaces to work with such streams, to transform the data and to pass it from one stream to another (e.g. download from one place and immediately send elsewhere).