spelling: strongly

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:45:01 -05:00
parent 55d1f98745
commit f14d9da22e
2 changed files with 4 additions and 4 deletions

View file

@ -92,7 +92,7 @@ class PebbleCommander(object):
`PebbleCommander` as the first argument, and the rest of the argument strings
as subsequent arguments. For errors, `fn` should throw an exception.
# TODO: Probably make the return something structured instead of stringly typed.
# TODO: Probably make the return something structured instead of strongly typed.
"""
def decorator(fn):
# Story time:
@ -151,7 +151,7 @@ class PebbleCommander(object):
def send_prompt_command(self, cmd):
""" Send a prompt command string.
Unfortunately this is indeed stringly typed, a better solution is necessary.
Unfortunately this is indeed strongly typed, a better solution is necessary.
"""
return self.connection.prompt.command_and_response(cmd)

View file

@ -77,7 +77,7 @@ class PebbleCommander(object):
`PebbleCommander` as the first argument, and the rest of the argument strings
as subsequent arguments. For errors, `fn` should throw an exception.
# TODO: Probably make the return something structured instead of stringly typed.
# TODO: Probably make the return something structured instead of strongly typed.
"""
def decorator(fn):
# Story time:
@ -136,7 +136,7 @@ class PebbleCommander(object):
def send_prompt_command(self, cmd):
""" Send a prompt command string.
Unfortunately this is indeed stringly typed, a better solution is necessary.
Unfortunately this is indeed strongly typed, a better solution is necessary.
"""
return self.connection.prompt.command_and_response(cmd)