Skip to content

Commit daad42f

Browse files
krish2718rlubos
authored andcommitted
treewide: Fix typo
Found by compliance check. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent 1340f28 commit daad42f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

samples/bluetooth/throughput/src/cmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ static int default_cmd(const struct shell *shell, size_t argc,
7676
}
7777

7878
if (argc == 2) {
79-
shell_error(shell, "Uknown argument: %s", argv[1]);
79+
shell_error(shell, "Unknown argument: %s", argv[1]);
8080
return -EINVAL;
8181
}
8282

samples/cellular/modem_shell/src/link/link_settings.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ int link_sett_save_defcontauth_prot(int auth_prot)
421421
err = link_shell_pdn_auth_prot_to_pdn_lib_method_map(auth_prot,
422422
&method);
423423
if (err) {
424-
mosh_error("Uknown auth protocol %d", auth_prot);
424+
mosh_error("Unknown auth protocol %d", auth_prot);
425425
return -EINVAL;
426426
}
427427

samples/peripheral/radio_test/src/radio_cmd.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ static int cmd_data_rate_set(const struct shell *shell, size_t argc,
207207
}
208208

209209
if (argc == 2) {
210-
shell_error(shell, "Uknown argument: %s", argv[1]);
210+
shell_error(shell, "Unknown argument: %s", argv[1]);
211211
return -EINVAL;
212212
}
213213

@@ -418,7 +418,7 @@ static int cmd_output_power_set(const struct shell *shell, size_t argc,
418418
}
419419

420420
if (argc == 2) {
421-
shell_error(shell, "Uknown argument: %s", argv[1]);
421+
shell_error(shell, "Unknown argument: %s", argv[1]);
422422
return -EINVAL;
423423
}
424424

@@ -439,7 +439,7 @@ static int cmd_transmit_pattern_set(const struct shell *shell, size_t argc,
439439
}
440440

441441
if (argc == 2) {
442-
shell_error(shell, "Uknown argument: %s.", argv[1]);
442+
shell_error(shell, "Unknown argument: %s.", argv[1]);
443443
return -EINVAL;
444444
}
445445

@@ -1173,7 +1173,7 @@ static int cmd_fem(const struct shell *shell, size_t argc, char **argv)
11731173
}
11741174

11751175
if (argc == 2) {
1176-
shell_error(shell, "Uknown argument: %s.", argv[1]);
1176+
shell_error(shell, "Unknown argument: %s.", argv[1]);
11771177
return -EINVAL;
11781178
}
11791179

@@ -1220,7 +1220,7 @@ static int cmd_fem_antenna_select(const struct shell *shell, size_t argc,
12201220
}
12211221

12221222
if (argc == 2) {
1223-
shell_error(shell, "Uknown argument: %s.", argv[1]);
1223+
shell_error(shell, "Unknown argument: %s.", argv[1]);
12241224
return -EINVAL;
12251225
}
12261226

0 commit comments

Comments
 (0)