From c997f89a2a296bfa154a286fb32a169fa3ea5447 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Wed, 26 Oct 2016 22:24:01 +0100 Subject: [PATCH] Remove fullstop from error message --- kvs/err.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvs/err.go b/kvs/err.go index 7643fb8a..11e73d09 100644 --- a/kvs/err.go +++ b/kvs/err.go @@ -71,5 +71,5 @@ type KVError struct { // Error returns the string representation of the error. func (e *KVError) Error() string { - return fmt.Sprintf("Database record already exists.") + return fmt.Sprintf("Database record already exists") }