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

@ -333,7 +333,7 @@ impl<'a, 't, 'i> Settings<'a, 't, 'i> {
self.primary_key = Setting::Set(primary_key);
}
pub fn set_autorize_typos(&mut self, val: bool) {
pub fn set_authorize_typos(&mut self, val: bool) {
self.authorize_typos = Setting::Set(val);
}