Skip to content

Commit

Permalink
fix: Correct type in Ints documentation (#528)
Browse files Browse the repository at this point in the history
Fixes a super-small type in the `Ints()` documentation.
  • Loading branch information
jeremywiebe authored Oct 19, 2020
1 parent 4a33ea0 commit a7bb38d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/reply.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func Int64s(reply interface{}, err error) ([]int64, error) {
return result, err
}

// Ints is a helper that converts an array command reply to a []in.
// Ints is a helper that converts an array command reply to a []int.
// If err is not equal to nil, then Ints returns nil, err. Nil array
// items are stay nil. Ints returns an error if an array item is not a
// bulk string or nil.
Expand Down

0 comments on commit a7bb38d

Please # to comment.