]> git.lizzy.rs Git - rust.git/commitdiff
Adjusted the indentation.
authorChristian <chris_veenman@hotmail.com>
Fri, 29 Mar 2019 15:18:24 +0000 (16:18 +0100)
committerChristian <chris_veenman@hotmail.com>
Fri, 29 Mar 2019 15:18:24 +0000 (16:18 +0100)
src/libstd/macros.rs

index ee5a8e6631ec700ab0deed7ac1ab8ac3163b5f59..03d2a3072167c0ded591f5ce3a43f4b7751eb46b 100644 (file)
@@ -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.