mirror of https://github.com/go-redis/redis.git
Merge pull request #112 from go-redis/fix/multi-less-confusion
multi: remove confusing comment.
This commit is contained in:
commit
c194f97ea2
3
multi.go
3
multi.go
|
@ -7,7 +7,8 @@ import (
|
||||||
|
|
||||||
var errDiscard = errors.New("redis: Discard can be used only inside Exec")
|
var errDiscard = errors.New("redis: Discard can be used only inside Exec")
|
||||||
|
|
||||||
// Not thread-safe.
|
// Multi implements Redis transactions as described in
|
||||||
|
// http://redis.io/topics/transactions.
|
||||||
type Multi struct {
|
type Multi struct {
|
||||||
commandable
|
commandable
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue