Skip to content

Commit 4eab7d5

Browse files
authored
Merge 7bc2514 into 14bc6bd
2 parents 14bc6bd + 7bc2514 commit 4eab7d5

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

source/appModuleHandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
_getAppModuleLock=threading.RLock()
5353
#: Notifies when another application is taking foreground.
5454
#: This allows components to react upon application switches.
55-
#: For example, braille triggers bluetooth polling for braille displaysf necessary.
55+
#: For example, braille triggers bluetooth polling for braille displays if necessary.
5656
#: Handlers are called with no arguments.
5757
post_appSwitch = extensionPoints.Action()
5858

source/braille.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1895,8 +1895,8 @@ def formatCellsForLog(cells: List[int]) -> str:
18951895
filter_displaySize = extensionPoints.Filter()
18961896
"""
18971897
Filter that allows components or add-ons to change the display size used for braille output.
1898-
For example, when a system is controlled by a remote system while having a 80 cells display connected,
1899-
the display size should be lowered to 40 whenever the remote system has a 40 cells display connected.
1898+
For example, when a system has an 80 cell display, but is being controlled by a remote system with a 40 cell
1899+
display, the display size should be lowered to 40 .
19001900
@param value: the number of cells of the current display.
19011901
@type value: int
19021902
"""

source/brailleViewer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# Extension points action:
5454
# Triggered every time the Braille Viewer is created / shown or hidden / destroyed.
5555
# Callback definition: Callable(created: bool) -> None
56-
# created - True for created/shown, False for hidden/destructed.
56+
# created - True for created/shown, False for hidden/destroyed.
5757
postBrailleViewerToolToggledAction = extensionPoints.Action()
5858
DEFAULT_NUM_CELLS = config.conf['brailleViewer']['defaultCellCount']
5959

source/config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#: @type: ConfigManager
5959
conf = None
6060

61-
#: Notifies when the configuration profile is switched.
61+
#: Notifies after the configuration profile has been switched.
6262
#: This allows components and add-ons to apply changes required by the new configuration.
6363
#: For example, braille switches braille displays if necessary.
6464
#: Handlers are called with no arguments.

source/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __getattr__(attrName: str) -> Any:
4646

4747

4848

49-
# inform those who want to know that NVDA has finished starting up.
49+
# Inform those who want to know that NVDA has finished starting up.
5050
postNvdaStartup = extensionPoints.Action()
5151

5252
PUMP_MAX_DELAY = 10

source/winAPI/messageWindow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
pre_handleWindowMessage = extensionPoints.Action()
2828
"""
2929
Notifies when a window message has been received by NVDA.
30-
This allows components to perform an action when several system events occur,
30+
This allows components to perform an action when certain system events occur,
3131
such as power, screen orientation and hardware changes.
3232
3333
Handlers are called with three arguments.

0 commit comments

Comments
 (0)