aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRyunosuke SATO <tricknotes.rs@gmail.com>2013-02-07 01:31:50 +0900
committerRyunosuke SATO <tricknotes.rs@gmail.com>2013-02-07 01:41:02 +0900
commit3b7b887ac1d94f602dfda1e0c270428050241a61 (patch)
tree9e7658bf69c9b714107d5c57419589eb058265c2 /railties
parentc16391681043a396b00741382311e5d1a24ee38c (diff)
downloadrails-3b7b887ac1d94f602dfda1e0c270428050241a61.tar.gz
rails-3b7b887ac1d94f602dfda1e0c270428050241a61.tar.bz2
rails-3b7b887ac1d94f602dfda1e0c270428050241a61.zip
Fix article for generator name
Use 'some' instead of 'a/an'.
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/generators/app_base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index c61fc388f0..99d80b3245 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -20,10 +20,10 @@ module Rails
def self.add_shared_options_for(name)
class_option :builder, type: :string, aliases: '-b',
- desc: "Path to a #{name} builder (can be a filesystem path or URL)"
+ desc: "Path to some #{name} builder (can be a filesystem path or URL)"
class_option :template, type: :string, aliases: '-m',
- desc: "Path to an #{name} template (can be a filesystem path or URL)"
+ desc: "Path to some #{name} template (can be a filesystem path or URL)"
class_option :skip_gemfile, type: :boolean, default: false,
desc: "Don't create a Gemfile"