From f30d7c4a25473d8783b8c9c18ac1966c25d98c7e Mon Sep 17 00:00:00 2001 From: Septem Date: Mon, 27 Mar 2023 17:53:36 +0800 Subject: [PATCH] docs: fix comment typo (#2505) --- pipeline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.go b/pipeline.go index 40e8ea4fd..c119e8f5f 100644 --- a/pipeline.go +++ b/pipeline.go @@ -10,7 +10,7 @@ type pipelineExecer func(context.Context, []Cmder) error // // Pipelining is a technique to extremely speed up processing by packing // operations to batches, send them at once to Redis and read a replies in a -// singe step. +// single step. // See https://redis.io/topics/pipelining // // Pay attention, that Pipeline is not a transaction, so you can get unexpected