Remove fullstop from error message

This commit is contained in:
Tobie Morgan Hitchcock 2016-10-26 22:24:01 +01:00
parent b9233ce966
commit c997f89a2a

View file

@ -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")
}