diff options
author | Raphomet <Raphael.T.Lee@gmail.com> | 2010-08-20 23:31:32 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2010-08-21 19:20:42 -0300 |
commit | 7a090b02165603cc6c18b3153539b4bce96ba065 (patch) | |
tree | beeb8f041e131819928a0627113a530dd9c7a93d /railties | |
parent | 82e389ed30fd979d4a627b1edbda52c6dde34ae6 (diff) | |
download | rails-7a090b02165603cc6c18b3153539b4bce96ba065.tar.gz rails-7a090b02165603cc6c18b3153539b4bce96ba065.tar.bz2 rails-7a090b02165603cc6c18b3153539b4bce96ba065.zip |
Trifling typos
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/commands/plugin.rb | 2 | ||||
-rw-r--r-- | railties/lib/rails/generators.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/commands/plugin.rb b/railties/lib/rails/commands/plugin.rb index 96b6f9c372..7bb4a1c054 100644 --- a/railties/lib/rails/commands/plugin.rb +++ b/railties/lib/rails/commands/plugin.rb @@ -375,7 +375,7 @@ module Commands "Enables updating but does not add a svn:externals entry.") { |v| @method = :checkout } o.on( "-e", "--export", "Use svn export to grab the plugin.", - "Exports the plugin, allowing you to check it into your local repository. Does not enable updates, or add an svn:externals entry.") { |v| @method = :export } + "Exports the plugin, allowing you to check it into your local repository. Does not enable updates or add an svn:externals entry.") { |v| @method = :export } o.on( "-q", "--quiet", "Suppresses the output from installation.", "Ignored if -v is passed (rails plugin -v install ...)") { |v| @options[:quiet] = true } diff --git a/railties/lib/rails/generators.rb b/railties/lib/rails/generators.rb index 8794392a7d..76ef598d68 100644 --- a/railties/lib/rails/generators.rb +++ b/railties/lib/rails/generators.rb @@ -218,11 +218,11 @@ module Rails puts "Usage: rails #{command} GENERATOR [args] [options]" puts puts "General options:" - puts " -h, [--help] # Print generators options and usage" + puts " -h, [--help] # Print generator's options and usage" puts " -p, [--pretend] # Run but do not make any changes" puts " -f, [--force] # Overwrite files that already exist" puts " -s, [--skip] # Skip files that already exist" - puts " -q, [--quiet] # Supress status output" + puts " -q, [--quiet] # Suppress status output" puts puts "Please choose a generator below." puts |