diff options
author | Simon Glass <sjg@chromium.org> | 2013-05-07 06:11:45 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-05-14 15:37:24 -0400 |
commit | 9602286d3d554d744f6ed2fa3c001d208a7aca23 (patch) | |
tree | 5d188883e6074d95d0c30ce1a95ff0f671037027 /common | |
parent | 805fa87f6d2366e2193f3d9eb1f793ad41ae1430 (diff) | |
download | u-boot-9602286d3d554d744f6ed2fa3c001d208a7aca23.zip u-boot-9602286d3d554d744f6ed2fa3c001d208a7aca23.tar.gz u-boot-9602286d3d554d744f6ed2fa3c001d208a7aca23.tar.bz2 |
env: Fix minor comment typos in cmd_nvedit
This should say 'environmnent'.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_nvedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index f8dc38e..2478c95 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -314,7 +314,7 @@ int setenv(const char *varname, const char *varvalue) /** * Set an environment variable to an integer value * - * @param varname Environmet variable to set + * @param varname Environment variable to set * @param value Value to set it to * @return 0 if ok, 1 on error */ @@ -329,7 +329,7 @@ int setenv_ulong(const char *varname, ulong value) /** * Set an environment variable to an value in hex * - * @param varname Environmet variable to set + * @param varname Environment variable to set * @param value Value to set it to * @return 0 if ok, 1 on error */ |