diff options
author | Karel Minarik <karmi@karmi.cz> | 2010-12-28 08:45:09 +0100 |
---|---|---|
committer | Karel Minarik <karmi@karmi.cz> | 2010-12-28 08:45:09 +0100 |
commit | 8e8c13ab1ed1140f708c8af74f386a3f6dec6e0a (patch) | |
tree | 067c949719e783e8d08832cdf5c50a063f2e0f1e | |
parent | bb99c944d3b57fd40b19ea0c07ef984e2be46da3 (diff) | |
download | rails-8e8c13ab1ed1140f708c8af74f386a3f6dec6e0a.tar.gz rails-8e8c13ab1ed1140f708c8af74f386a3f6dec6e0a.tar.bz2 rails-8e8c13ab1ed1140f708c8af74f386a3f6dec6e0a.zip |
Fixed incorrect command for displaying options for new application Generator in Getting Started guide
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 4466c291bb..43525d7a57 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -163,7 +163,7 @@ $ rails new blog This will create a Rails application called Blog in a directory called blog. -TIP: You can see all of the switches that the Rails application builder accepts by running <tt>rails -h</tt>. +TIP: You can see all of the switches that the Rails application builder accepts by running <tt>rails new -h</tt>. After you create the blog application, switch to its folder to continue work directly in that application: |