We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26ed78c + 0a07803 commit 7acaf18Copy full SHA for 7acaf18
src/libcore/macros.rs
@@ -164,7 +164,7 @@ macro_rules! assert_ne {
164
match (&$left, &$right) {
165
(left_val, right_val) => {
166
if *left_val == *right_val {
167
- panic!(r#"assertion failed: `(left != right)`
+ panic!(r#"assertion failed: `(left != right)`
168
left: `{:?}`
169
right: `{:?}`"#, left_val, right_val)
170
}
@@ -175,7 +175,7 @@ macro_rules! assert_ne {
175
match (&($left), &($right)) {
176
177
178
179
180
right: `{:?}`: {}"#, left_val, right_val,
181
format_args!($($arg)+))
0 commit comments