Unverified Commit e913a252 authored by Eric Chiang's avatar Eric Chiang Committed by GitHub

Merge pull request #1410 from sagikazarmark/fix-typo

Fix typo
parents 8b4a9bf5 c48cb36e
...@@ -62,7 +62,7 @@ func newDexClient(hostAndPort, caPath string) (api.DexClient, error) { ...@@ -62,7 +62,7 @@ func newDexClient(hostAndPort, caPath string) (api.DexClient, error) {
conn, err := grpc.Dial(hostAndPort, grpc.WithTransportCredentials(creds)) conn, err := grpc.Dial(hostAndPort, grpc.WithTransportCredentials(creds))
if err != nil { if err != nil {
return nil, fmt.Errorf("dail: %v", err) return nil, fmt.Errorf("dial: %v", err)
} }
return api.NewDexClient(conn), nil return api.NewDexClient(conn), nil
} }
......
...@@ -38,7 +38,7 @@ func newDexClient(hostAndPort, caPath, clientCrt, clientKey string) (api.DexClie ...@@ -38,7 +38,7 @@ func newDexClient(hostAndPort, caPath, clientCrt, clientKey string) (api.DexClie
conn, err := grpc.Dial(hostAndPort, grpc.WithTransportCredentials(creds)) conn, err := grpc.Dial(hostAndPort, grpc.WithTransportCredentials(creds))
if err != nil { if err != nil {
return nil, fmt.Errorf("dail: %v", err) return nil, fmt.Errorf("dial: %v", err)
} }
return api.NewDexClient(conn), nil return api.NewDexClient(conn), nil
} }
......
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