aboutsummaryrefslogtreecommitdiff
path: root/cli/mmcli-modem.c
diff options
context:
space:
mode:
authorDan Williams <dan@ioncontrol.co>2025-03-05 17:00:59 +0000
committerDan Williams <dan@ioncontrol.co>2025-03-05 17:00:59 +0000
commitc393a917c1095ec07b6da1d9e8460501059544c0 (patch)
tree77c076650873e976fb6b23e6872a20d64e165352 /cli/mmcli-modem.c
parentead9951ea61004bc14687cd4c93a83eb0956113f (diff)
parent54dcc25d8bf1f6cd050360a15d3b475ee92881a2 (diff)
Merge request !1309 from 'codespell'
Fix some typos on the source code https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/merge_requests/1309
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,