From 806105fea8858b55efbd821a34b86bed76a1fd60 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Thu, 19 Sep 2013 12:53:38 -0700 Subject: [PATCH] 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. --- src/librustpkg/usage.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/librustpkg/usage.rs b/src/librustpkg/usage.rs index c0601818f3772..a8126b49716f8 100644 --- a/src/librustpkg/usage.rs +++ b/src/librustpkg/usage.rs @@ -150,8 +150,9 @@ Options: } 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. "); }