summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-03-29 16:25:38 +0100
committerGitHub <noreply@github.com>2019-03-29 16:25:38 +0100
commit8705de49e1de83f357fcd6224f9e0a5e266915da (patch)
tree6f50d8d358d2ec4a66344232f44f17f58ec86a4c /src/libstd
parentfe210d0df17b16d3afa3ec5462767bd9f20a4c0c (diff)
downloadrust-8705de49e1de83f357fcd6224f9e0a5e266915da.tar.gz
rust-8705de49e1de83f357fcd6224f9e0a5e266915da.zip
Update src/libstd/macros.rs
Removed duplicate line.

Co-Authored-By: DevQps <46896178+DevQps@users.noreply.github.com>
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 37e88ee6209..bc0a97939d8 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -234,7 +234,6 @@ macro_rules! eprintln {
 /// The `dbg!` macro works exactly the same in release builds.
 /// This is useful when debugging issues that only occur in release
 /// builds or when debugging in release mode is significantly faster.
-/// 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.