cleanup error messages

This commit is contained in:
Joel Wetzell
2026-02-09 19:15:34 -06:00
parent 988437fccf
commit 6b178d1ae4
6 changed files with 9 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ func init() {
hostString, ok := host.(string)
if !ok {
return nil, errors.New("net.tcp.client host must be string")
return nil, errors.New("net.tcp.client host must be a string")
}
port, ok := params["port"]