about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian <chris_veenman@hotmail.com>2019-03-30 14:35:51 +0100
committerChristian <chris_veenman@hotmail.com>2019-03-30 14:35:51 +0100
commit66e920ea5ca844267d946569fca82b7885904c22 (patch)
tree330a5babbe0341d15eac74c36a5f35c13d0f8bc0
parent33bc6ad8c008555602fbbdf6907deff6fe729a25 (diff)
downloadrust-66e920ea5ca844267d946569fca82b7885904c22.tar.gz
rust-66e920ea5ca844267d946569fca82b7885904c22.zip
Added a missing !.
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 209d3210f8f..be4db1f737d 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -315,7 +315,7 @@ macro_rules! eprintln {
 /// file and line whenever it's reached.
 ///
 /// [stderr]: https://en.wikipedia.org/wiki/Standard_streams#Standard_error_(stderr)
-/// [`debug`]: https://docs.rs/log/*/log/macro.debug.html
+/// [`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")]