summaryrefslogtreecommitdiffstats
path: root/common/env.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/env.c')
-rw-r--r--common/env.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/common/env.c b/common/env.c
index 98789e0206..96a8ed035b 100644
--- a/common/env.c
+++ b/common/env.c
@@ -306,12 +306,12 @@ U_BOOT_CMD_END
/**
* @page printenv_command printenv
*
- * Usage: printenv [<name>]
+ * Usage: printenv [\<name>]
*
* Print environment variables.
- * If <name> was given, it prints out its content if the environment variable
- * <name> exists.
- * Without the <name> argument all current environment variables are printed.
+ * If \<name> was given, it prints out its content if the environment variable
+ * \<name> exists.
+ * Without the \<name> argument all current environment variables are printed.
*/
#ifdef CONFIG_SIMPLE_PARSER
@@ -342,14 +342,14 @@ U_BOOT_CMD_END
/**
* @page setenv_command setenv
*
- * Usage: setenv <name> [<val>]
+ * Usage: setenv \<name> [\<val>]
*
- * Set environment variable <name> to <val ...>
- * If no <val> was given, the variable <name> will be removed.
+ * Set environment variable \<name> to \<val ...>
+ * If no \<val> was given, the variable \<name> will be removed.
*
* This command can be replaced by using the simpler form in the hush:
*
- * <name> = <val>
+ * \<name> = \<val>
*
* @note This command is only required if the simple
* parser (not the hush) is in use.
@@ -394,7 +394,7 @@ U_BOOT_CMD_END
/**
* @page export_command export
*
- * Usage: export <var>[=value]...
+ * Usage: export \<var>[=value]...
*
* Export an environment variable to subsequently executed scripts
*/