hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit c05c99f0c552553914689cb6a29edb5ac8b4f88d
parent ff7689ce0212629c81a77b7e3e84cda5149f6b06
Author: Joe Mooring <joe.mooring@veriphor.com>
Date:   Thu, 27 Jan 2022 08:13:32 -0800

Fix typo in panicOnWarning message

Diffstat:
Mcommon/loggers/loggers.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/loggers/loggers.go b/common/loggers/loggers.go
@@ -133,7 +133,7 @@ func (l *logger) Info() *log.Logger {
 	return l.INFO
 }
 
-const panicOnWarningMessage = "Warning trapped. Remvove the --panicOnWarning flag to continue."
+const panicOnWarningMessage = "Warning trapped. Remove the --panicOnWarning flag to continue."
 
 func (l *logger) Warnf(format string, v ...interface{}) {
 	l.WARN.Printf(format, v...)