Keep errors lowercase

This commit is contained in:
Christian Muehlhaeuser
2019-12-10 18:17:29 +01:00
parent 544fe9741d
commit 0c4f259f6a
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -295,6 +295,6 @@ func keyToType(key string) (StyleType, error) {
return TableRow, nil
default:
return 0, fmt.Errorf("Invalid style element type: %s", key)
return 0, fmt.Errorf("invalid style element type: %s", key)
}
}