From 809aa9af65a3822f6185b45c06598e5b4eed612a Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Thu, 24 Jun 2021 18:31:16 +0300 Subject: [PATCH] v init: change text to indicate that `v init` creates projects --- cmd/tools/vcreate.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/vcreate.v b/cmd/tools/vcreate.v index af327ab915..e14797951d 100644 --- a/cmd/tools/vcreate.v +++ b/cmd/tools/vcreate.v @@ -165,7 +165,7 @@ fn init_project() { c.write_main(false) c.create_git_repo('.') - println("Change your module's description in `v.mod`") + println('Change the description of your project in `v.mod`') } fn main() {