Skip to content

Commit a89dc2d

Browse files
committed
Fix deprecated comm link.
1 parent 54660fc commit a89dc2d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libstd/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@
7373
//!
7474
//! ## Concurrency, I/O, and the runtime
7575
//!
76-
//! The [`thread`](thread/index.html) module contains Rust's threading abstractions,
77-
//! while [`comm`](comm/index.html) contains the channel types for message
78-
//! passing. [`sync`](sync/index.html) contains further, primitive, shared
79-
//! memory types, including [`atomic`](sync/atomic/index.html).
76+
//! The [`thread`](thread/index.html) module contains Rust's threading abstractions.
77+
//! [`sync`](sync/index.html) contains further, primitive, shared memory types,
78+
//! including [`atomic`](sync/atomic/index.html), and [`mpsc`](sync/mpmc/index.html),
79+
//! which contains the channel types for message passing.
8080
//!
8181
//! Common types of I/O, including files, TCP, UDP, pipes, Unix domain sockets,
8282
//! timers, and process spawning, are defined in the

0 commit comments

Comments
 (0)