summaryrefslogtreecommitdiff
path: root/include/vsprintf.h
diff options
context:
space:
mode:
authorVagrant Cascadian <vagrant@debian.org>2016-10-23 20:45:19 -0700
committerTom Rini <trini@konsulko.com>2016-10-31 10:13:17 -0400
commit3450a8596d3c06107ccf44d2ad41402449e681dd (patch)
tree2977342c3e9511371484f532f00f819a30206326 /include/vsprintf.h
parentda1a3bd4d38af6fc63fd93c8e47424d98e634d58 (diff)
Fix spelling of "resetting".
Cover-Letter: Fixes several spelling errors for the words "resetting", "extended", "occur", and "multiple". Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/vsprintf.h')
-rw-r--r--include/vsprintf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vsprintf.h b/include/vsprintf.h
index 60e91d119e..e38076d22d 100644
--- a/include/vsprintf.h
+++ b/include/vsprintf.h
@@ -72,7 +72,7 @@ long trailing_strtoln(const char *str, const char *end);
* panic() - Print a message and reset/hang
*
* Prints a message on the console(s) and then resets. If CONFIG_PANIC_HANG is
- * defined, then it will hang instead of reseting.
+ * defined, then it will hang instead of resetting.
*
* @param fmt: printf() format string for message, which should not include
* \n, followed by arguments
@@ -84,7 +84,7 @@ void panic(const char *fmt, ...)
* panic_str() - Print a message and reset/hang
*
* Prints a message on the console(s) and then resets. If CONFIG_PANIC_HANG is
- * defined, then it will hang instead of reseting.
+ * defined, then it will hang instead of resetting.
*
* This function can be used instead of panic() when your board does not
* already use printf(), * to keep code size small.