diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-26 23:36:55 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2023-01-29 02:14:51 -0700 |
commit | 690b0cbb2a220ef4179a0f9f34725328fb8c73f8 (patch) | |
tree | 31ecd27ad55cebc5a5e440dff4ddb36834d6aa94 /borrowed_misc.go | |
parent | b0b7c75e9e2ee8c80a82a04562a1a7c7d117ae0e (diff) |
.golangci.yml: Turn on 'godot', fix
Diffstat (limited to 'borrowed_misc.go')
-rw-r--r-- | borrowed_misc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/borrowed_misc.go b/borrowed_misc.go index ab9338f..b84158b 100644 --- a/borrowed_misc.go +++ b/borrowed_misc.go @@ -12,7 +12,7 @@ import ( "unicode" ) -// from encode.go +// isEmptyValue is borrowed from encode.go. func isEmptyValue(v reflect.Value) bool { switch v.Kind() { case reflect.Array, reflect.Map, reflect.Slice, reflect.String: @@ -31,7 +31,7 @@ func isEmptyValue(v reflect.Value) bool { return false } -// from encode.go +// isValidTag is borrowed from encode.go. func isValidTag(s string) bool { if s == "" { return false |