Skip to content

Commit c95451e

Browse files
authored
Rollup merge of rust-lang#147669 - cyrgani:cyrgani-patch-1, r=joboet
fix missing link to `std::char` in `std` docs Missed this in rust-lang#147373.
2 parents c49ee00 + 18d1b69 commit c95451e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

library/std/src/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//! So for example there is a [page for the primitive type
6666
//! `char`](primitive::char) that lists all the methods that can be called on
6767
//! characters (very useful), and there is a [page for the module
68-
//! `std::char`] that documents iterator and error types created by these methods
68+
//! `std::char`](crate::char) that documents iterator and error types created by these methods
6969
//! (rarely useful).
7070
//!
7171
//! Note the documentation for the primitives [`str`] and [`[T]`][prim@slice] (also
@@ -180,9 +180,6 @@
180180
//!
181181
//!
182182
//! [I/O]: io
183-
//! [`MIN`]: i32::MIN
184-
//! [`MAX`]: i32::MAX
185-
//! [page for the module `std::i32`]: crate::i32
186183
//! [TCP]: net::TcpStream
187184
//! [The Rust Prelude]: prelude
188185
//! [UDP]: net::UdpSocket

0 commit comments

Comments
 (0)