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.
2 parents 5a14ec4 + 8d28702 commit d65ed4bCopy full SHA for d65ed4b
site/src/comparison.rs
@@ -359,13 +359,13 @@ pub(crate) fn deserves_attention(
359
) -> bool {
360
match (primary.largest_change(), secondary.largest_change()) {
361
(Some(c), _) if c.magnitude() >= Magnitude::Medium => true,
362
- (_, Some(c)) if c.magnitude() >= Magnitude::Medium => true,
+ (_, Some(c)) if c.magnitude() >= Magnitude::Large => true,
363
_ => {
364
// How we determine whether a group of small changes deserves attention is and always will be arbitrary,
365
// but this feels good enough for now. We may choose in the future to become more sophisticated about it.
366
let primary_n = primary.num_changes();
367
let secondary_n = secondary.num_changes();
368
- (primary_n * 2 + secondary_n) >= 6
+ (primary_n * 3 + secondary_n) >= 9
369
}
370
371
0 commit comments