mirror of
https://github.com/async-rs/async-std.git
synced 2025-03-04 17:19:41 +00:00
test: fix failed doc test
This commit is contained in:
parent
bf9ee88815
commit
556d7992ce
1 changed files with 3 additions and 1 deletions
|
@ -152,6 +152,8 @@
|
||||||
//! Await two futures concurrently, and return a tuple of their output:
|
//! Await two futures concurrently, and return a tuple of their output:
|
||||||
//!
|
//!
|
||||||
//! ```
|
//! ```
|
||||||
|
//! use async_std::prelude::*;
|
||||||
|
//!
|
||||||
//! #[async_std::main]
|
//! #[async_std::main]
|
||||||
//! async fn main() {
|
//! async fn main() {
|
||||||
//! let a = async { 1u8 };
|
//! let a = async { 1u8 };
|
||||||
|
@ -167,7 +169,7 @@
|
||||||
//!
|
//!
|
||||||
//! #[async_std::main]
|
//! #[async_std::main]
|
||||||
//! async fn main() -> std::io::Result<()> {
|
//! async fn main() -> std::io::Result<()> {
|
||||||
//! let mut socket = UdpSocket::bind("127.0.0.1:8080")?;
|
//! let socket = UdpSocket::bind("127.0.0.1:8080").await?;
|
||||||
//! println!("Listening on {}", socket.local_addr()?);
|
//! println!("Listening on {}", socket.local_addr()?);
|
||||||
//!
|
//!
|
||||||
//! let mut buf = vec![0u8; 1024];
|
//! let mut buf = vec![0u8; 1024];
|
||||||
|
|
Loading…
Reference in a new issue