about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-09-19 12:53:38 -0700
committerSteve Klabnik <steve@steveklabnik.com>2013-09-19 12:53:38 -0700
commit806105fea8858b55efbd821a34b86bed76a1fd60 (patch)
treef3b40f5269290c1752645f45c0fdec615e89ce19
parent85c0fb7b8a81fc48a2155decd20abf16b1c5eeb6 (diff)
downloadrust-806105fea8858b55efbd821a34b86bed76a1fd60.tar.gz
rust-806105fea8858b55efbd821a34b86bed76a1fd60.zip
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.
-rw-r--r--src/librustpkg/usage.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/librustpkg/usage.rs b/src/librustpkg/usage.rs
index c0601818f37..a8126b49716 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.
 ");
 }