File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ use rustc_span::sym;
1010
1111declare_clippy_lint ! {
1212 /// ### What it does
13- /// Checks assertions that doesn't have a custom panic message.
13+ /// Checks assertions without a custom panic message.
1414 ///
1515 /// ### Why is this bad?
16- /// If the assertion fails, a custom message may make it easier to debug what went wrong.
16+ /// If the assertion fails, the custom message may make it easier to understand what went wrong.
1717 ///
1818 /// ### Example
1919 /// ```rust
@@ -30,7 +30,7 @@ declare_clippy_lint! {
3030 #[ clippy:: version = "1.69.0" ]
3131 pub MISSING_ASSERT_MESSAGE ,
3232 pedantic,
33- "checks assertions that doesn't have a custom panic message"
33+ "checks assertions without a custom panic message"
3434}
3535
3636#[ derive( Default , Clone , Debug ) ]
You can’t perform that action at this time.
0 commit comments