2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

Merge pull request #926 from surechen/master

edit a small typo for stream. for issue #860
This commit is contained in:
Yoshua Wuyts 2020-12-30 23:35:54 +01:00 committed by GitHub
commit 5484f5b6c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -255,7 +255,7 @@
//! //!
//! # Infinity //! # Infinity
//! //!
//! Streams do not have to be finite. As an example, an repeat stream is //! Streams do not have to be finite. As an example, a repeat stream is
//! an infinite stream: //! an infinite stream:
//! //!
//! ``` //! ```