aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-modem.c
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2025-02-28 19:56:23 +0100
committerDan Williams <dan@ioncontrol.co>2025-03-05 16:53:26 +0000
commit54dcc25d8bf1f6cd050360a15d3b475ee92881a2 (patch)
tree77c076650873e976fb6b23e6872a20d64e165352 /cli/mmcli-modem.c
parentdb37e063f840144a42e62037f5940f0fc612f9a0 (diff)
treewide: Fix some spelling errors
All in debug messages or code comments so not user / client visible. Signed-off-by: Guido Günther <agx@sigxcpu.org>
Diffstat (limited to 'cli/mmcli-modem.c')
-rw-r--r--cli/mmcli-modem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/mmcli-modem.c b/cli/mmcli-modem.c
index 2c17f5b4..4d806ef5 100644
--- a/cli/mmcli-modem.c
+++ b/cli/mmcli-modem.c
@@ -1131,7 +1131,7 @@ get_modem_ready (GObject *source,
/* Request to reset the modem? */
if (reset_flag) {
- g_debug ("Asynchronously reseting modem...");
+ g_debug ("Asynchronously resetting modem...");
mm_modem_reset (ctx->modem,
ctx->cancellable,
(GAsyncReadyCallback)reset_ready,
@@ -1141,7 +1141,7 @@ get_modem_ready (GObject *source,
/* Request to reset the modem to factory state? */
if (factory_reset_str) {
- g_debug ("Asynchronously factory-reseting modem...");
+ g_debug ("Asynchronously factory-resetting modem...");
mm_modem_factory_reset (ctx->modem,
factory_reset_str,
ctx->cancellable,
@@ -1384,7 +1384,7 @@ mmcli_modem_run_synchronous (GDBusConnection *connection)
if (reset_flag) {
gboolean result;
- g_debug ("Synchronously reseting modem...");
+ g_debug ("Synchronously resetting modem...");
result = mm_modem_reset_sync (ctx->modem, NULL, &error);
reset_process_reply (result, error);
return;
@@ -1394,7 +1394,7 @@ mmcli_modem_run_synchronous (GDBusConnection *connection)
if (factory_reset_str) {
gboolean result;
- g_debug ("Synchronously factory-reseting modem...");
+ g_debug ("Synchronously factory-resetting modem...");
result = mm_modem_factory_reset_sync (ctx->modem,
factory_reset_str,
NULL,