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(
359359) -> bool {
360360 match ( primary. largest_change ( ) , secondary. largest_change ( ) ) {
361361 ( 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 ,
363363 _ => {
364364 // How we determine whether a group of small changes deserves attention is and always will be arbitrary,
365365 // but this feels good enough for now. We may choose in the future to become more sophisticated about it.
366366 let primary_n = primary. num_changes ( ) ;
367367 let secondary_n = secondary. num_changes ( ) ;
368- ( primary_n * 2 + secondary_n) >= 6
368+ ( primary_n * 3 + secondary_n) >= 9
369369 }
370370 }
371371}
You can’t perform that action at this time.
0 commit comments