about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorBrian Bowman <seeker14491@gmail.com>2015-12-11 15:00:54 -0600
committerBrian Bowman <seeker14491@gmail.com>2015-12-11 15:00:54 -0600
commit73615f7f8a04435b5cd1afb99ccc236f890a7f27 (patch)
tree684b17b4f62394743763cc8038a666a734e8930a /src/libstd/lib.rs
parent81dd3824ff4f4f85db2a092dab78e5e6c05f96cc (diff)
downloadrust-73615f7f8a04435b5cd1afb99ccc236f890a7f27.tar.gz
rust-73615f7f8a04435b5cd1afb99ccc236f890a7f27.zip
Fix MIN, MAX links
The `MIN` link was broken. Reverts #29624.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index c8b8caee84e..054f281c070 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -76,7 +76,7 @@
 //! `i32`](primitive.i32.html) that lists all the methods that can be called on
 //! 32-bit integers (very useful), and there is a [page for the module
 //! `std::i32`](i32/index.html) that documents the constant values [`MIN`] and
-//! [`MAX`](i32/constant.MAX.html) (rarely useful).
+//! [`MAX`] (rarely useful).
 //!
 //! Note the documentation for the primitives [`str`] and [`[T]`][slice] (also
 //! called 'slice'). Many method calls on [`String`] and [`Vec<T>`] are actually
@@ -152,7 +152,8 @@
 //! [`mpsc`], which contains the channel types for message passing.
 //!
 //! [I/O]: io/index.html
-//! [MIN]: i32/constant.MIN.html
+//! [`MIN`]: i32/constant.MIN.html
+//! [`MAX`]: i32/constant.MAX.html
 //! [TCP]: net/struct.TcpStream.html
 //! [The Rust Prelude]: prelude/index.html
 //! [UDP]: net/struct.UdpSocket.html