We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f8e2cb commit 3a06a12Copy full SHA for 3a06a12
src/sync/mod.rs
@@ -6,6 +6,9 @@
6
//!
7
//! ## The need for synchronization
8
9
+//! async-std's sync primitives are scheduler-aware, making it possible to
10
+//! `.await` their operations - for example the locking of a [`Mutex`].
11
+//!
12
//! Conceptually, a Rust program is a series of operations which will
13
//! be executed on a computer. The timeline of events happening in the
14
//! program is consistent with the order of the operations in the code.
0 commit comments