Missing module std in example.

This commit is contained in:
Strømberg 2020-01-06 17:25:17 +01:00 committed by GitHub
parent ebbb2bf37a
commit 0113cacda2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,7 +70,7 @@ pub struct TcpStream(net_imp::TcpStream);
/// // ...
/// }
///
/// fn main() -> io::Result<()> {
/// fn main() -> std::io::Result<()> {
/// let listener = TcpListener::bind("127.0.0.1:80")?;
///
/// // accept connections and process them serially