mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-09 14:41:02 +00:00
Merge pull request #558 from alanbernstein/typo-fix
Fix typo in error message
This commit is contained in:
commit
29df847e22
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue