From b63bfcd42469e1d9f9f0c0780867e4ad9fc62b23 Mon Sep 17 00:00:00 2001 From: Jeremy Wiebe Date: Fri, 16 Oct 2020 16:56:52 -0700 Subject: [PATCH] Fix type in `Ints` documentation Fixes a super-small type in the `Ints()` documentation. --- redis/reply.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/reply.go b/redis/reply.go index f32368f7..dfe6aff7 100644 --- a/redis/reply.go +++ b/redis/reply.go @@ -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.