Skip to content

Commit aad47da

Browse files
committed
lowercase error messages
Signed-off-by: luke <luke.parkin@arm.com>
1 parent 3736da6 commit aad47da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/proxy/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func namespaceCloneFlags(spec *specs.Spec) (uintptr, error) {
3535
}
3636
flag, ok := namespaceFlags[ns.Type]
3737
if !ok {
38-
return 0, fmt.Errorf("Unknown namespace type %q", ns.Type)
38+
return 0, fmt.Errorf("unknown namespace type %q", ns.Type)
3939
}
4040
flags |= flag
4141
}

0 commit comments

Comments
 (0)