From eb14a8245c8925c78662bb8eb416eefb49af7202 Mon Sep 17 00:00:00 2001
From: Devon Barrett <devon@devonbarrett.net>
Date: Sun, 8 Oct 2017 11:29:27 +0100
Subject: [PATCH] fixes typo: s/suppied/supplied/

---
 cmd/dex/serve.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/dex/serve.go b/cmd/dex/serve.go
index 86d20603..1a4a6c82 100644
--- a/cmd/dex/serve.go
+++ b/cmd/dex/serve.go
@@ -75,7 +75,7 @@ func serve(cmd *cobra.Command, args []string) error {
 	}{
 		{c.Issuer == "", "no issuer specified in config file"},
 		{!c.EnablePasswordDB && len(c.StaticPasswords) != 0, "cannot specify static passwords without enabling password db"},
-		{c.Storage.Config == nil, "no storage suppied in config file"},
+		{c.Storage.Config == nil, "no storage supplied in config file"},
 		{c.Web.HTTP == "" && c.Web.HTTPS == "", "must supply a HTTP/HTTPS  address to listen on"},
 		{c.Web.HTTPS != "" && c.Web.TLSCert == "", "no cert specified for HTTPS"},
 		{c.Web.HTTPS != "" && c.Web.TLSKey == "", "no private key specified for HTTPS"},
-- 
GitLab