about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2017-08-18 16:32:38 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2017-08-18 16:32:38 +0200
commit86fd9a552d25f6e174512581ca75f38f84462811 (patch)
treea49bf2da2bac01b3cd56b2c6373338a311e87c1f /src/liballoc
parentb8ce1a3d2e4fe22034845e76b4b11d5b71aba43e (diff)
downloadrust-86fd9a552d25f6e174512581ca75f38f84462811.tar.gz
rust-86fd9a552d25f6e174512581ca75f38f84462811.zip
Add missing url for fmt module
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/fmt.rs b/src/liballoc/fmt.rs
index 480fb4b9eaa..578d90c5ba9 100644
--- a/src/liballoc/fmt.rs
+++ b/src/liballoc/fmt.rs
@@ -211,7 +211,7 @@
 //!
 //! - [`fmt::Display`][`Display`] implementations assert that the type can be faithfully
 //!   represented as a UTF-8 string at all times. It is **not** expected that
-//!   all types implement the `Display` trait.
+//!   all types implement the [`Display`] trait.
 //! - [`fmt::Debug`][`Debug`] implementations should be implemented for **all** public types.
 //!   Output will typically represent the internal state as faithfully as possible.
 //!   The purpose of the [`Debug`] trait is to facilitate debugging Rust code. In