summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-02-24 14:52:31 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-02-28 10:30:39 +0100
commitbfb384e74dcac162f585e3a7483f607dfaf6e595 (patch)
tree7b4289e408067b3f97439d8a422d5f642e1d1533 /commands
parent2c573ff69d50a9676e8c730bb733ceb2c9aa5157 (diff)
downloadbarebox-bfb384e74dcac162f585e3a7483f607dfaf6e595.tar.gz
barebox-bfb384e74dcac162f585e3a7483f607dfaf6e595.tar.xz
commands: tutorial: adjust command description
Current text can be quite confusing for the prev alias: prev - print next tip for barebox tutorial Instead, change it to: prev - navigate the barebox tutorial Which is correct for both next and prev. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20220224135231.257713-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/tutorial.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/tutorial.c b/commands/tutorial.c
index 81e2f93716..4441777643 100644
--- a/commands/tutorial.c
+++ b/commands/tutorial.c
@@ -152,7 +152,7 @@ static __maybe_unused const char *const prev_alias[] = { "prev", NULL};
BAREBOX_CMD_START(next)
.cmd = do_tutorial_next,
.aliases = prev_alias,
- BAREBOX_CMD_DESC("print next tip for barebox tutorial")
+ BAREBOX_CMD_DESC("navigate the barebox tutorial")
BAREBOX_CMD_OPTS("[-hr] [STEP]")
BAREBOX_CMD_HELP(cmd_next_help)
BAREBOX_CMD_GROUP(CMD_GRP_INFO)