File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3964,11 +3964,15 @@ declare_clippy_lint! {
3964
3964
3965
3965
declare_clippy_lint ! {
3966
3966
/// ### What it does
3967
- /// Checks for unnecessary calls to `min()` or `max()`
3967
+ /// Checks for unnecessary calls to `min()` or `max()` in the following cases
3968
+ /// - Either both side is constant
3969
+ /// - One side is clearly larger than the other, like i32::MIN and an i32 variable
3968
3970
///
3969
3971
/// ### Why is this bad?
3970
3972
///
3971
- /// In these cases it is not necessary to call `min()`
3973
+ /// In the aformentioned cases it is not necessary to call `min()` or `max()`
3974
+ /// to compare values, it may even cause confusion.
3975
+ ///
3972
3976
/// ### Example
3973
3977
/// ```no_run
3974
3978
/// let _ = 0.min(7_u32);
You can’t perform that action at this time.
0 commit comments