public SpellCheckerQuickFix[] getRegularFixes(PsiElement element,
int offset,
@NotNull TextRange textRange,
boolean useRename,
String wordWithTypo) {
return new SpellCheckerQuickFix[]{new ChangeTo(wordWithTypo), new AcceptWordAsCorrect(wordWithTypo)};
}