Fix usage for rustpkg init

When I took out the ability to make a new project by name, I forgot to
update the usage to reflect the changes.
This commit is contained in:
Steve Klabnik 2013-09-19 12:53:38 -07:00
parent 85c0fb7b8a
commit 806105fea8
1 changed files with 3 additions and 2 deletions

View File

@ -150,8 +150,9 @@ Options:
} }
pub fn init() { pub fn init() {
io::println("rustpkg init name io::println("rustpkg init
This makes a new workspace for working on a project named name. This will turn the current working directory into a workspace. The first
command you run when starting off a new project.
"); ");
} }