Commit 0ee7ac2c by Torkel Ödegaard

Merge pull request #4015 from onlyjob/codespell

minor spelling corrections
parents da8782a9 3fd6ae59
...@@ -102,7 +102,7 @@ func SignUpStep2(c *middleware.Context, form dtos.SignUpStep2Form) Response { ...@@ -102,7 +102,7 @@ func SignUpStep2(c *middleware.Context, form dtos.SignUpStep2Form) Response {
return ApiError(500, "Failed to query database for invites", err) return ApiError(500, "Failed to query database for invites", err)
} }
apiResponse := util.DynMap{"message": "User sign up completed succesfully", "code": "redirect-to-landing-page"} apiResponse := util.DynMap{"message": "User sign up completed successfully", "code": "redirect-to-landing-page"}
for _, invite := range invitesQuery.Result { for _, invite := range invitesQuery.Result {
if ok, rsp := applyUserInvite(user, invite, false); !ok { if ok, rsp := applyUserInvite(user, invite, false); !ok {
return rsp return rsp
......
...@@ -35,7 +35,7 @@ func (a *ldapAuther) Dial() error { ...@@ -35,7 +35,7 @@ func (a *ldapAuther) Dial() error {
return err return err
} else { } else {
if !certPool.AppendCertsFromPEM(pem) { if !certPool.AppendCertsFromPEM(pem) {
return errors.New("Failed to append CA certficate " + caCertFile) return errors.New("Failed to append CA certificate " + caCertFile)
} }
} }
} }
......
...@@ -20,7 +20,7 @@ func initContextWithAuthProxy(ctx *Context) bool { ...@@ -20,7 +20,7 @@ func initContextWithAuthProxy(ctx *Context) bool {
query := getSignedInUserQueryForProxyAuth(proxyHeaderValue) query := getSignedInUserQueryForProxyAuth(proxyHeaderValue)
if err := bus.Dispatch(query); err != nil { if err := bus.Dispatch(query); err != nil {
if err != m.ErrUserNotFound { if err != m.ErrUserNotFound {
ctx.Handle(500, "Failed find user specifed in auth proxy header", err) ctx.Handle(500, "Failed to find user specified in auth proxy header", err)
return true return true
} }
......
...@@ -149,7 +149,7 @@ func (scanner *PluginScanner) loadPluginJson(pluginJsonFilePath string) error { ...@@ -149,7 +149,7 @@ func (scanner *PluginScanner) loadPluginJson(pluginJsonFilePath string) error {
var loader PluginLoader var loader PluginLoader
if pluginGoType, exists := PluginTypes[pluginCommon.Type]; !exists { if pluginGoType, exists := PluginTypes[pluginCommon.Type]; !exists {
return errors.New("Unkown plugin type " + pluginCommon.Type) return errors.New("Unknown plugin type " + pluginCommon.Type)
} else { } else {
loader = reflect.New(reflect.TypeOf(pluginGoType)).Interface().(PluginLoader) loader = reflect.New(reflect.TypeOf(pluginGoType)).Interface().(PluginLoader)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment