diff --git a/cmd/migrate.go b/cmd/migrate.go index 311ff71..6bd8e1f 100644 --- a/cmd/migrate.go +++ b/cmd/migrate.go @@ -35,7 +35,7 @@ func upgradeVimana() { fmt.Println("Downloading vimana error: status code =", resp.R.StatusCode) return } - // reponse + // response // println(resp.Text()) type person struct { @@ -149,7 +149,7 @@ func upgradeVimana() { if err != nil { log.Fatal(err) } else { - fmt.Println("Upgrade vimana succesfully") + fmt.Println("Upgrade vimana successfully") } os.Chmod(VIMANA_BIN_PATH, os.FileMode(0755)) os.RemoveAll("./vimana-" + OS + "-" + ARCH + "/") 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)