Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 082ea0f

Browse files
Merge pull request #81 from epipping/master
Fix failure to compile (and typo)
2 parents 6f59a35 + 8919861 commit 082ea0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/spellchecker_mac.mm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@
137137
}
138138

139139
void MacSpellchecker::UpdateGlobalSpellchecker() {
140-
const NSString* autoLangauge = @"___AUTO_LANGUAGE";
141-
NSString* globalLang = currentGlobalLanguage ? currentGlobalLanguage : autoLangauge;
142-
NSString* ourLang = this->spellCheckerLanguage ? this->spellCheckerLanguage : autoLangauge;
140+
NSString* autoLanguage = @"___AUTO_LANGUAGE";
141+
NSString* globalLang = currentGlobalLanguage ? currentGlobalLanguage : autoLanguage;
142+
NSString* ourLang = this->spellCheckerLanguage ? this->spellCheckerLanguage : autoLanguage;
143143

144144
if ([globalLang isEqualToString: ourLang]) {
145145
return;

0 commit comments

Comments
 (0)