summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian <chris_veenman@hotmail.com>2019-03-29 16:18:24 +0100
committerChristian <chris_veenman@hotmail.com>2019-03-29 16:18:24 +0100
commit9240092fe3bf32803ac9f9a247a098844d6f4780 (patch)
tree5d719cc4fe3f6859025c6de2a020a88f018a9fad /src
parentf10e44420a072881cce6d7819d2b2bfb99df90df (diff)
downloadrust-9240092fe3bf32803ac9f9a247a098844d6f4780.tar.gz
Adjusted the indentation.
Diffstat (limited to 'src')
-rw-r--r--src/libstd/macros.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index ee5a8e6631e..03d2a307216 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -231,8 +231,9 @@ macro_rules! eprintln {
/// to give up ownership, you can instead borrow with `dbg!(&expr)`
/// for some expression `expr`.
///
-/// 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.
+/// 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.
///
/// 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.