Merge pull request #558 from alanbernstein/typo-fix

Fix typo in error message
This commit is contained in:
alanbernstein 2017-05-30 10:18:53 -05:00 committed by GitHub
commit 29df847e22

View file

@ -72,7 +72,7 @@ func (c *Call) UintArg(key string) (uint64, bool, error) {
case uint64:
return tval, true, nil
default:
return 0, true, fmt.Errorf("could not convert %v of type %T to uint64 in Calll.UintArg", tval, tval)
return 0, true, fmt.Errorf("could not convert %v of type %T to uint64 in Call.UintArg", tval, tval)
}
}