From 7a47fb469e3630ca6b2b77c5aa1888e0dfd63a21 Mon Sep 17 00:00:00 2001 From: beer-1 Date: Tue, 20 Aug 2024 19:20:38 +0900 Subject: [PATCH] use colon --- jsonrpc/backend/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonrpc/backend/errors.go b/jsonrpc/backend/errors.go index d3a6f513..4295efcc 100644 --- a/jsonrpc/backend/errors.go +++ b/jsonrpc/backend/errors.go @@ -30,7 +30,7 @@ func NewInternalError(msg string) *InternalError { } func (e *InternalError) Error() string { - return "internal jsonrpc error; " + e.msg + return "internal jsonrpc error: " + e.msg } func (e *InternalError) ErrorCode() int {