Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adjusted the indentation.
  • Loading branch information
Christian committed Mar 29, 2019
commit 9240092fe3bf32803ac9f9a247a098844d6f4780
5 changes: 3 additions & 2 deletions src/libstd/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment thread
DevQps marked this conversation as resolved.
Outdated
/// release mode is significantly faster.
Comment thread
DevQps marked this conversation as resolved.
Outdated
///
/// 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.
Expand Down