We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dabf989 commit c514ff0Copy full SHA for c514ff0
clippy_lints/src/neg_cmp_op_on_partial_ord.rs
@@ -80,9 +80,9 @@ impl<'tcx> LateLintPass<'tcx> for NoNegCompOpForPartialOrd {
80
NEG_CMP_OP_ON_PARTIAL_ORD,
81
expr.span,
82
"the use of negated comparison operators on partially ordered \
83
- types produces code that is hard to read and refactor. Please \
+ types produces code that is hard to read and refactor, please \
84
consider using the `partial_cmp` method instead, to make it \
85
- clear that the two values could be incomparable."
+ clear that the two values could be incomparable"
86
)
87
}
88
0 commit comments