diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:19:21 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:19:21 -0700 |
commit | 6ac65c92029d3eefd101f9458d86bae0314cd14c (patch) | |
tree | 98270b780af0eac09fe107fa37f2b2e1fce02472 /railties | |
parent | ee100128c3a917f96d6f40293bb5a5ed3bcf8c27 (diff) | |
download | rails-6ac65c92029d3eefd101f9458d86bae0314cd14c.tar.gz rails-6ac65c92029d3eefd101f9458d86bae0314cd14c.tar.bz2 rails-6ac65c92029d3eefd101f9458d86bae0314cd14c.zip |
Use rails help new instead of rails new -h
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/getting_started.textile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 447b8e86d0..b9a0f6a8ba 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -263,8 +263,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 new -h</tt>. +by running <tt>rails help new</tt>. After you create the blog application, switch to its folder to continue work directly in that application: |