From df7297d67b492f675657d4d84ab015cf1f758744 Mon Sep 17 00:00:00 2001 From: Ian Kent Date: Sun, 13 Mar 2016 17:58:18 +0000 Subject: [PATCH] fix typo --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 72487c4..2e4d3f6 100644 --- a/config/config.go +++ b/config/config.go @@ -32,5 +32,5 @@ func Configure() *Config { func RegisterFlags() { flag.StringVar(&cfg.AuthFile, "auth-file", envconf.FromEnvP("MH_AUTH_FILE", "").(string), "A username:bcryptpw mapping file") - flag.StringVar(&cfg.WebPath, "ui-web-path", envconf.FromEnvP("MH_UI_WEB_PATH", "").(string), "WebPath under which the ui is served (without leading or trailing slahes), e.g. 'mailhog'. Value defaults to ''") + flag.StringVar(&cfg.WebPath, "ui-web-path", envconf.FromEnvP("MH_UI_WEB_PATH", "").(string), "WebPath under which the UI is served (without leading or trailing slashes), e.g. 'mailhog'. Value defaults to ''") }