Skip to content

Commit

Permalink
Typo bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mltony committed Jun 8, 2024
1 parent b3fdc39 commit 4316039
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/globalPlugins/wordNav.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ def script_selectByWordWordNav(self,gesture):
isNpp = isinstance(self, Scintilla)
obj = self.rootNVDAObject if isBrowseMode else self
blacklisted = isBlacklistedApp(obj)
isTerminal = isInstance(obj, Terminal)
isTerminal = isinstance(obj, Terminal)
gd = isGoogleDocs(obj)
disableGd = gd if getConfig("disableInGoogleDocs") else False
if not isBrowseMode:
Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _(arg):
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description": _("""Improved navigate by word and word selection commands."""),
# version
"addon_version": "2.1",
"addon_version": "2.2",
# Author(s)
"addon_author": "Tony Malykh <[email protected]>",
# URL for the add-on documentation support
Expand Down

0 comments on commit 4316039

Please sign in to comment.