mirror of https://github.com/go-redis/redis.git
fix typo (#1788)
This commit is contained in:
parent
237bad5284
commit
14d82a2d93
|
@ -49,7 +49,7 @@ var (
|
||||||
func Struct(dst interface{}) (StructValue, error) {
|
func Struct(dst interface{}) (StructValue, error) {
|
||||||
v := reflect.ValueOf(dst)
|
v := reflect.ValueOf(dst)
|
||||||
|
|
||||||
// The dstination to scan into should be a struct pointer.
|
// The destination to scan into should be a struct pointer.
|
||||||
if v.Kind() != reflect.Ptr || v.IsNil() {
|
if v.Kind() != reflect.Ptr || v.IsNil() {
|
||||||
return StructValue{}, fmt.Errorf("redis.Scan(non-pointer %T)", dst)
|
return StructValue{}, fmt.Errorf("redis.Scan(non-pointer %T)", dst)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue