codestyle: fix error string should not be capitalized

This commit is contained in:
Vsevolod Brekelov 2019-10-18 18:34:58 +03:00
parent d46d679f36
commit 59e3bd2fa9
4 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@ const (
decimals = 100000000
)
var errInvalidString = errors.New("Fixed8 must satisfy following regex \\d+(\\.\\d{1,8})?")
var errInvalidString = errors.New("fixed8 must satisfy following regex \\d+(\\.\\d{1,8})?")
// Fixed8 represents a fixed-point number with precision 10^-8.
type Fixed8 int64