From f14d9da22e2fb77cc82a5c6f4cc36d5481b45d04 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:45:01 -0500 Subject: [PATCH] spelling: strongly Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- python_libs/pebble-commander/pebble/commander/commander.py | 4 ++-- tools/commander/commander.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python_libs/pebble-commander/pebble/commander/commander.py b/python_libs/pebble-commander/pebble/commander/commander.py index c69b613f..b11f9824 100644 --- a/python_libs/pebble-commander/pebble/commander/commander.py +++ b/python_libs/pebble-commander/pebble/commander/commander.py @@ -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) diff --git a/tools/commander/commander.py b/tools/commander/commander.py index 886265f9..90616c9f 100644 --- a/tools/commander/commander.py +++ b/tools/commander/commander.py @@ -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)