mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
rpc/client: Improve word expression
This commit is contained in:
parent
15b9b39e6c
commit
59d54868f4
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ func DialContext(ctx context.Context, rawurl string) (*Client, error) {
|
||||||
case "":
|
case "":
|
||||||
return DialIPC(ctx, rawurl)
|
return DialIPC(ctx, rawurl)
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("no known transport for URL scheme %q", u.Scheme)
|
return nil, fmt.Errorf("unknown transport for URL scheme %q", u.Scheme)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue