Skip to content

Commit

Permalink
Fix typo for codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 authored Jul 8, 2024
1 parent 84a861b commit d82aef2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NotepadNext/widgets/EditorInfoStatusBar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ void EditorInfoStatusBar::updateEncoding(ScintillaNext *editor)

void EditorInfoStatusBar::updateOverType(ScintillaNext *editor)
{
bool ot = editor->overtype();
if (ot) {
bool overtype = editor->overtype();
if (overtype) {
//: This is a short abbreviation to indicate characters will be replaced when typing
overType->setText(tr("OVR"));
}
Expand Down

0 comments on commit d82aef2

Please sign in to comment.