about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-03-30 22:15:05 +0000
committerbors <bors@rust-lang.org>2019-03-30 22:15:05 +0000
commitb0fcfa7d6135ecfdfebd325683890ae6dcf5eb18 (patch)
tree4814d703c2e0a716fb0fe5ac615763826937d04b /src/libstd
parentbefeeb7c083c9e5edddc86563cc461185d897a13 (diff)
parent7da27b261a7b69ba77aa60ef4430c4cd2b9aedf6 (diff)
downloadrust-b0fcfa7d6135ecfdfebd325683890ae6dcf5eb18.tar.gz
rust-b0fcfa7d6135ecfdfebd325683890ae6dcf5eb18.zip
Auto merge of #59575 - Centril:rollup, r=Centril
Rollup of 3 pull requests

Successful merges:

 - #59405 (doc: use correct body font URLs)
 - #59562 (Changed reference style in dbg macro docs.)
 - #59569 (Add book.toml with title to unstable-book doc)

Failed merges:

r? @ghost
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 0e0292277e1..be4db1f737d 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -240,7 +240,7 @@ macro_rules! eprintln {
 /// Note that the macro is intended as a debugging tool and therefore you
 /// should avoid having uses of it in version control for longer periods.
 /// Use cases involving debug output that should be added to version control
-/// are better served by macros such as [`debug!`][debug-log] from the [`log`][log] crate.
+/// are better served by macros such as [`debug!`] from the [`log`] crate.
 ///
 /// # Stability
 ///
@@ -315,8 +315,8 @@ macro_rules! eprintln {
 /// file and line whenever it's reached.
 ///
 /// [stderr]: https://en.wikipedia.org/wiki/Standard_streams#Standard_error_(stderr)
-/// [debug-log]: https://docs.rs/log/*/log/macro.debug.html
-/// [log]: https://docs.rs/log/
+/// [`debug!`]: https://docs.rs/log/*/log/macro.debug.html
+/// [`log`]: https://crates.io/crates/log
 #[macro_export]
 #[stable(feature = "dbg_macro", since = "1.32.0")]
 macro_rules! dbg {