summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2020-02-17 12:23:58 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2020-02-17 12:23:58 -0500
commit0d9e47fed2c2f39b47bdfed90a0bdab98b237885 (patch)
tree9cf30fa682b20dde0773d141eb49d02fdbc90846
parentb260a77a27e28c57493b436a0186263568217c2b (diff)
-rw-r--r--rrdformat/rrdbinary/errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rrdformat/rrdbinary/errors.go b/rrdformat/rrdbinary/errors.go
index 1e61af0..73741df 100644
--- a/rrdformat/rrdbinary/errors.go
+++ b/rrdformat/rrdbinary/errors.go
@@ -92,7 +92,7 @@ func typeErrorf(format string, a ...interface{}) error {
type ArchError string
func (e ArchError) Error() string {
- return "invalid rrdbinary.Architecture: "+string(e)
+ return "invalid rrdbinary.Architecture: " + string(e)
}
func archErrorf(format string, a ...interface{}) error {