From 5a0a968d683bf31fbd9e67a96058f422f8703750 Mon Sep 17 00:00:00 2001 From: findnature Date: Mon, 22 Apr 2024 18:06:59 +0800 Subject: [PATCH] Fix typo in comment Signed-off-by: findnature --- cmd/utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/config.go b/cmd/utils/config.go index e785cde..ad1cb11 100644 --- a/cmd/utils/config.go +++ b/cmd/utils/config.go @@ -45,7 +45,7 @@ func LoadVimanaConfig(configFile string) (*InitConfig, error) { } func SaveConfig(config *InitConfig, initPath string) error { - // conver the configuration to TOML + // convert the configuration to TOML var buffer bytes.Buffer encoder := toml.NewEncoder(&buffer)