about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-03-05 22:04:04 +0100
committerGitHub <noreply@github.com>2020-03-05 22:04:04 +0100
commit189626672d4a8a838643ed612e568403aec27701 (patch)
treeed63654e30bed8ebfd73c3e37bc8864b2ccf11f6 /src/libstd
parent44f184acc0008646d046a21cd2578bfed6a79867 (diff)
parent729d49d7f2a19ffcac8897e6b9e1898fdc0ad0a0 (diff)
downloadrust-189626672d4a8a838643ed612e568403aec27701.tar.gz
rust-189626672d4a8a838643ed612e568403aec27701.zip
Rollup merge of #69711 - penelopezone:patch-1, r=steveklabnik
Update macros.rs: fix documentation typo.
Diffstat (limited to 'src/libstd')
-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 9e1ac8754d9..7fd7de56f46 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -185,7 +185,7 @@ macro_rules! eprintln {
 /// builds or when debugging in release mode is significantly faster.
 ///
 /// 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.
+/// should avoid having uses of it in version control for long periods.
 /// Use cases involving debug output that should be added to version control
 /// are better served by macros such as [`debug!`] from the [`log`] crate.
 ///