Fix typo in method name

This commit is contained in:
mcmah309 2025-05-22 14:25:04 +00:00
parent 8047cfe438
commit 1d5265caf4
5 changed files with 10 additions and 10 deletions

View file

@ -666,7 +666,7 @@ pub fn apply_settings_to_builder(
match typo_tolerance {
Setting::Set(ref value) => {
match value.enabled {
Setting::Set(val) => builder.set_autorize_typos(val),
Setting::Set(val) => builder.set_authorize_typos(val),
Setting::Reset => builder.reset_authorize_typos(),
Setting::NotSet => (),
}