File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -359,13 +359,13 @@ pub(crate) fn deserves_attention(
359
359
) -> bool {
360
360
match ( primary. largest_change ( ) , secondary. largest_change ( ) ) {
361
361
( Some ( c) , _) if c. magnitude ( ) >= Magnitude :: Medium => true ,
362
- ( _, Some ( c) ) if c. magnitude ( ) >= Magnitude :: Medium => true ,
362
+ ( _, Some ( c) ) if c. magnitude ( ) >= Magnitude :: Large => true ,
363
363
_ => {
364
364
// How we determine whether a group of small changes deserves attention is and always will be arbitrary,
365
365
// but this feels good enough for now. We may choose in the future to become more sophisticated about it.
366
366
let primary_n = primary. num_changes ( ) ;
367
367
let secondary_n = secondary. num_changes ( ) ;
368
- ( primary_n * 2 + secondary_n) >= 6
368
+ ( primary_n * 3 + secondary_n) >= 9
369
369
}
370
370
}
371
371
}
You can’t perform that action at this time.
0 commit comments