Skip to content

Commit 410ada0

Browse files
authored
Made the unsupportedError msg more readable
The unsupportedError msg is little confusing , no space between the ARCH and the "is unsupported" ; for example "windows/amd64is unsupported"
1 parent d8c2e46 commit 410ada0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/proxy/util/nfacct/nfacct_others.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"runtime"
2525
)
2626

27-
var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + "is unsupported")
27+
var unsupportedError = fmt.Errorf(runtime.GOOS + "/" + runtime.GOARCH + " is unsupported")
2828

2929
func New() (Interface, error) {
3030
return nil, unsupportedError

0 commit comments

Comments
 (0)