diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-07-23 01:19:24 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-07-23 01:19:24 +0530 |
commit | ccb3af468328270b38e4a31ee0e353fd1d7ec327 (patch) | |
tree | e3743ca032f832907192fc4c9a6f0d73608c5d5a /railties/guides/source | |
parent | 14b9726ecd8635254c2a174717fcfab33e5a8380 (diff) | |
download | rails-ccb3af468328270b38e4a31ee0e353fd1d7ec327.tar.gz rails-ccb3af468328270b38e4a31ee0e353fd1d7ec327.tar.bz2 rails-ccb3af468328270b38e4a31ee0e353fd1d7ec327.zip |
corrected sentences to make them consistent in command line guide
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/command_line.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/command_line.textile b/railties/guides/source/command_line.textile index b5e87eea3d..b34506d4d8 100644 --- a/railties/guides/source/command_line.textile +++ b/railties/guides/source/command_line.textile @@ -85,7 +85,7 @@ h4. +rails generate+ The +rails generate+ command uses templates to create a whole lot of things. Running +rails generate+ by itself gives a list of available generators: -You can also use the alias "g" that will work same as +rails generate+: <tt>rails g</tt>. +You can also use the alias "g" to invoke the generator command: <tt>rails g</tt>. <shell> $ rails generate @@ -313,7 +313,7 @@ h4. +rails runner+ $ rails runner "Model.long_running_method" </shell> -You can also use the alias "r" to run Ruby code in the context of Rails: <tt>rails r</tt>. +You can also use the alias "r" to invoke the runner: <tt>rails r</tt>. You can specify the environment in which the +runner+ command should operate using the +-e+ switch. |