codestyle: fix error string should not be capitalized
This commit is contained in:
parent
d46d679f36
commit
59e3bd2fa9
4 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue