We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 237bad5 commit 14d82a2Copy full SHA for 14d82a2
internal/hscan/hscan.go
@@ -49,7 +49,7 @@ var (
49
func Struct(dst interface{}) (StructValue, error) {
50
v := reflect.ValueOf(dst)
51
52
- // The dstination to scan into should be a struct pointer.
+ // The destination to scan into should be a struct pointer.
53
if v.Kind() != reflect.Ptr || v.IsNil() {
54
return StructValue{}, fmt.Errorf("redis.Scan(non-pointer %T)", dst)
55
}
0 commit comments