Merge pull request #480 from 7imon7ays/7imon7ays_glide_up_typo

Fix typo in config wizard
diff --git a/action/config_wizard.go b/action/config_wizard.go
index f81c800..2d774f8 100644
--- a/action/config_wizard.go
+++ b/action/config_wizard.go
@@ -205,7 +205,7 @@
 func wizardAskRange(ver *semver.Version, d *cfg.Dependency) string {
 	vstr := ver.String()
 	msg.Info("The package %s appears to use semantic versions (http://semver.org).", d.Name)
-	msg.Info("Would you like to track the latest minor or patch releases (major.minor.path)?")
+	msg.Info("Would you like to track the latest minor or patch releases (major.minor.patch)?")
 	msg.Info("Tracking minor version releases would use '>= %s, < %d.0.0' ('^%s'). Tracking patch version", vstr, ver.Major()+1, vstr)
 	msg.Info("releases would use '>= %s, < %d.%d.0' ('~%s'). For more information on Glide versions", vstr, ver.Major(), ver.Minor()+1, vstr)
 	msg.Info("and ranges see https://glide.sh/docs/versions")