From 118e3f09dbf08c7310d6bc1a5cfe5e6f8a0e3c32 Mon Sep 17 00:00:00 2001 From: dhaggart Date: Wed, 14 Jul 2021 17:38:41 +0100 Subject: [PATCH] MB-47395 Correct typo in message. Change-Id: Ic95874f3f5c66fbc6051bd7578446c312d779ba2 Reviewed-on: http://review.couchbase.org/c/go-couchbase/+/157534 Reviewed-by: Sitaram Vemulapalli Tested-by: Donald Haggart --- client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.go b/client.go index a6a84b3..dad3661 100644 --- a/client.go +++ b/client.go @@ -191,9 +191,9 @@ func (b *Bucket) Do2(k string, f func(mc *memcached.Client, vb uint16) error, de if err == "" { err = fmt.Sprintf("KV status %v", resp.Status) } - return fmt.Errorf("unable to complete action after %v attemps: %v", maxTries, err) + return fmt.Errorf("unable to complete action after %v attempts: %v", maxTries, err) } else { - return fmt.Errorf("unable to complete action after %v attemps: %v", maxTries, lastError) + return fmt.Errorf("unable to complete action after %v attempts: %v", maxTries, lastError) } }