We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d5064b commit a3a2f9eCopy full SHA for a3a2f9e
src/lib.rs
@@ -138,7 +138,7 @@
138
//!
139
//! Call an async function from the main function:
140
141
-//! ```
+//! ```rust,ignore
142
//! async fn say_hello() {
143
//! println!("Hello, world!");
144
//! }
@@ -151,7 +151,7 @@
151
152
//! Await two futures concurrently, and return a tuple of their output:
153
154
155
//! use async_std::prelude::*;
156
157
//! #[async_std::main]
@@ -164,7 +164,7 @@
164
165
//! Create a UDP server that echoes back each received message to the sender:
166
167
-//! ```no_run
+//! ```no_run,ignore
168
//! use async_std::net::UdpSocket;
169
170
0 commit comments