From a7bb38d363f90ec6425d289804744e5a2728a90f Mon Sep 17 00:00:00 2001 From: Jeremy Wiebe Date: Mon, 19 Oct 2020 01:38:28 -0700 Subject: [PATCH] fix: Correct type in `Ints` documentation (#528) 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.