docs: fix comment typo (#2505)

This commit is contained in:
Septem 2023-03-27 17:53:36 +08:00 committed by GitHub
parent 386e0f0cd3
commit f30d7c4a25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ type pipelineExecer func(context.Context, []Cmder) error
// //
// Pipelining is a technique to extremely speed up processing by packing // 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 // 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 // See https://redis.io/topics/pipelining
// //
// Pay attention, that Pipeline is not a transaction, so you can get unexpected // Pay attention, that Pipeline is not a transaction, so you can get unexpected