From 374b3ee40b2dc52b6e6bf041a8bb120a79c12218 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Fri, 20 May 2016 16:47:13 -0400 Subject: [PATCH] clientv3: fix typo --- clientv3/op.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientv3/op.go b/clientv3/op.go index 935c0d4a5..d53ff5ea6 100644 --- a/clientv3/op.go +++ b/clientv3/op.go @@ -198,7 +198,7 @@ func WithRange(endKey string) OpOption { } // WithFromKey specifies the range of 'Get' or 'Delete' requests -// to be equal or greater than they key in the argument. +// to be equal or greater than the key in the argument. func WithFromKey() OpOption { return WithRange("\x00") } // WithSerializable makes 'Get' request serializable. By default,