Skip to content

Commit

Permalink
fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
disksing committed Apr 24, 2017
1 parent 6f3e66c commit b6615bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/apiutil/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func init() {
httpClient := &http.Client{
Timeout: apiClientTimeout,
}
unixClinet := &http.Client{
unixClient := &http.Client{
Timeout: apiClientTimeout,
Transport: &http.Transport{
Dial: func(_, addr string) (net.Conn, error) {
Expand All @@ -94,7 +94,7 @@ func init() {
clients = map[string]*http.Client{
"http": httpClient,
"https": httpClient,
"unix": unixClinet,
"unixs": unixClinet,
"unix": unixClient,
"unixs": unixClient,
}
}

0 comments on commit b6615bd

Please sign in to comment.