Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
Signed-off-by: David Calavera <[email protected]>
  • Loading branch information
calavera committed Aug 26, 2020
1 parent b408bb8 commit bb293f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/netext/dialer.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ func (d *Dialer) findRemote(addr string) (*lib.HostAddress, error) {
return lib.NewHostAddress(ip, port)
}

return d.fetchRemoteFromResover(host, port)
return d.fetchRemoteFromResolver(host, port)
}

func (d *Dialer) fetchRemoteFromResover(host, port string) (*lib.HostAddress, error) {
func (d *Dialer) fetchRemoteFromResolver(host, port string) (*lib.HostAddress, error) {
ip, err := d.Resolver.FetchOne(host)
if err != nil {
return nil, err
Expand Down
2 changes: 1 addition & 1 deletion lib/netext/dialer_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2016 Load Impact
* Copyright (C) 2020 Load Impact
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand Down

0 comments on commit bb293f2

Please sign in to comment.