Fix typo (s/adding then/adding them). (#8327)

Noticed this typo and figured I'd submit a drive-by fix.
This commit is contained in:
Joshua Bronson 2023-10-29 18:08:15 -04:00 committed by GitHub
parent 9b89bf7d8a
commit e799f90782
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -744,7 +744,7 @@ pub(super) fn warn_incompatible_formatter_settings(
.map(|rule| format!("`{}`", rule.noqa_code()))
.collect();
rule_names.sort();
warn!("The following rules may cause conflicts when used with the formatter: {}. To avoid unexpected behavior, we recommend disabling these rules, either by removing them from the `select` or `extend-select` configuration, or adding then to the `ignore` configuration.", rule_names.join(", "));
warn!("The following rules may cause conflicts when used with the formatter: {}. To avoid unexpected behavior, we recommend disabling these rules, either by removing them from the `select` or `extend-select` configuration, or adding them to the `ignore` configuration.", rule_names.join(", "));
}
// Rules with different quote styles.