From 63c7e9f840bac224b87343ff458e1ec28e115c54 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Thu, 11 May 2017 13:25:07 -0700 Subject: [PATCH] clientv3: remove duplicate documentation for Do() --- clientv3/kv.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/clientv3/kv.go b/clientv3/kv.go index 6578dbe35..dc45fa4ad 100644 --- a/clientv3/kv.go +++ b/clientv3/kv.go @@ -51,11 +51,6 @@ type KV interface { // Compact compacts etcd KV history before the given rev. Compact(ctx context.Context, rev int64, opts ...CompactOption) (*CompactResponse, error) - // Do applies a single Op on KV without a transaction. - // Do is useful when declaring operations to be issued at a later time - // whereas Get/Put/Delete are for better suited for when the operation - // should be immediately issued at time of declaration. - // Do applies a single Op on KV without a transaction. // Do is useful when creating arbitrary operations to be issued at a // later time; the user can range over the operations, calling Do to