diff pkg/mesh/tin.go @ 4847:4847ac70103a

Made staticcheck happy. - error strings should not end with punctuation or a newline (ST1005) - error strings should not be capitalized (ST1005)
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 18 Nov 2019 11:54:20 +0100
parents f4abfd0ee8ad
children 5f47eeea988d
line wrap: on
line diff
--- a/pkg/mesh/tin.go	Thu Nov 14 14:53:15 2019 +0100
+++ b/pkg/mesh/tin.go	Mon Nov 18 11:54:20 2019 +0100
@@ -27,8 +27,8 @@
 )
 
 var (
-	errNoByteSlice   = errors.New("Not a byte slice")
-	errTooLessPoints = errors.New("Too less points")
+	errNoByteSlice   = errors.New("not a byte slice")
+	errTooLessPoints = errors.New("too less points")
 )
 
 // Tin stores a mesh of triangles with common vertices.