From 7cfb1e6a32da819162051074e8afada361525de0 Mon Sep 17 00:00:00 2001 From: AlexSSD7 Date: Sat, 2 Sep 2023 09:40:27 +0100 Subject: [PATCH] map_arg.go => kv_arg.go --- qemucli/{map_arg.go => kv_arg.go} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename qemucli/{map_arg.go => kv_arg.go} (95%) 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