From 4923da7f4dcf6eb8df47f8375303ae92364cd6f4 Mon Sep 17 00:00:00 2001 From: Gareth Kirwan Date: Thu, 3 Mar 2016 20:29:52 +0000 Subject: [PATCH] Fix typo Unkown -> unknown in error --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index 9a7db602b..02be9c5c5 100644 --- a/server.go +++ b/server.go @@ -443,7 +443,7 @@ func (server *Server) loadEntryPointConfig(entryPointName string, entryPoint *En if len(entryPoint.Redirect.EntryPoint) > 0 { regex = "^(?:https?:\\/\\/)?([\\da-z\\.-]+)(?::\\d+)(.*)$" if server.globalConfiguration.EntryPoints[entryPoint.Redirect.EntryPoint] == nil { - return nil, errors.New("Unkown entrypoint " + entryPoint.Redirect.EntryPoint) + return nil, errors.New("Unknown entrypoint " + entryPoint.Redirect.EntryPoint) } protocol := "http" if server.globalConfiguration.EntryPoints[entryPoint.Redirect.EntryPoint].TLS != nil {