Merge pull request #3801 from DennisMao/develop

fix annotation on orm/utils #3777
This commit is contained in:
Dennis 2019-09-09 00:46:36 +08:00 committed by GitHub
commit 8395a26061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ func (f StrTo) Uint16() (uint16, error) {
return uint16(v), err
}
// Uint32 string to uint31
// Uint32 string to uint32
func (f StrTo) Uint32() (uint32, error) {
v, err := strconv.ParseUint(f.String(), 10, 32)
return uint32(v), err