Skip to content

Commit

Permalink
Fix spelling mistake in flags.go
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Apr 3, 2016
1 parent b4ba1cd commit 2ca0426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (h headers) Set(value string) error {
return fmt.Errorf("header '%s' has a wrong format", value)
}
// Add key/value directly to the http.Header (map[string][]string).
// http.Header.Add() cannonicalizes keys but vegeta is used
// http.Header.Add() canonicalizes keys but vegeta is used
// to test systems that require case-sensitive headers.
h.Header[key] = append(h.Header[key], val)
return nil
Expand Down

0 comments on commit 2ca0426

Please sign in to comment.