diff --git a/qemucli/map_arg.go b/qemucli/kv_arg.go similarity index 95% rename from qemucli/map_arg.go rename to qemucli/kv_arg.go index b48dcba..a47b591 100644 --- a/qemucli/map_arg.go +++ b/qemucli/kv_arg.go @@ -37,8 +37,8 @@ func NewMapArg(key string, values map[string]string) (*MapArg, error) { // The reason why we're making copies here and creating // a whole other copy of the entire map is because maps // are pointers, and we do not want to reference anything - // that will not be able to validate except at this stage - // of MapArg creation. + // that we will not be able to validate except at this + // stage of MapArg creation. k := k v := v