Skip to content

Commit de938c0

Browse files
authored
Merge pull request #16 from relic-se/scale-arg
Minor documentation typo fixes
2 parents f86a9ed + 91f2805 commit de938c0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

adafruit_usb_host_mouse/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def find_and_init_mouse(cursor_image=DEFAULT_CURSOR, subclass=SUBCLASS_BOOT):
6060
:param subclass: Defines whether to search for boot or non-boot mice.
6161
SUBCLASS_BOOT (0X01), a boot mouse will be searched for
6262
SUBCLASS_RESERVED (0x00), a non-boot (report) mouse will be searched for
63-
:return: A tupple cotaining the arguments needed by the calling find and init helper
63+
:return: A tuple containing the arguments needed by the calling find and init helper
6464
function. If no mouse is found None is returned.
6565
"""
6666
mouse_interface_index, mouse_endpoint_address = None, None
@@ -177,7 +177,7 @@ def find_and_init_report_mouse(cursor_image=DEFAULT_CURSOR, scale=1):
177177

178178
class BootMouse:
179179
"""
180-
Helpler class that encapsulates the objects needed to interact with a boot
180+
Helper class that encapsulates the objects needed to interact with a boot
181181
mouse, show a visible cursor on the display, and determine when buttons
182182
were pressed.
183183
@@ -318,7 +318,7 @@ def update(self):
318318

319319
class ReportMouse(BootMouse):
320320
"""
321-
Helpler class that encapsulates the objects needed to interact with a non-Boot
321+
Helper class that encapsulates the objects needed to interact with a non-Boot
322322
mouse (Report), show a visible cursor on the display, and determine when buttons
323323
were pressed. The class is a subclass of BootMouse that overrides the update method.
324324

0 commit comments

Comments
 (0)