aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/base.rb
diff options
context:
space:
mode:
authorJon Atack <jonnyatack@gmail.com>2015-07-17 20:15:35 +0200
committerJon Atack <jonnyatack@gmail.com>2015-07-17 20:18:57 +0200
commitea747f7d2ee3854627c4cdc41fa059f249e87394 (patch)
tree8e4e624b8bae0733338f56410adae24bc0ce16e5 /railties/lib/rails/generators/base.rb
parent2c79122c0bbd61dcef12b95c80e025490d5a9783 (diff)
downloadrails-ea747f7d2ee3854627c4cdc41fa059f249e87394.tar.gz
rails-ea747f7d2ee3854627c4cdc41fa059f249e87394.tar.bz2
rails-ea747f7d2ee3854627c4cdc41fa059f249e87394.zip
[skip ci] Lookup can be a noun but it is not a verb
Various grammar corrections and wrap to 80 characters.
Diffstat (limited to 'railties/lib/rails/generators/base.rb')
-rw-r--r--railties/lib/rails/generators/base.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/base.rb b/railties/lib/rails/generators/base.rb
index 813b8b629e..6fa413f8b0 100644
--- a/railties/lib/rails/generators/base.rb
+++ b/railties/lib/rails/generators/base.rb
@@ -103,12 +103,12 @@ module Rails
# hook_for :test_framework, as: :controller
# end
#
- # And now it will lookup at:
+ # And now it will look up at:
#
# "test_unit:controller", "test_unit"
#
- # Similarly, if you want it to also lookup in the rails namespace, you just
- # need to provide the :in value:
+ # Similarly, if you want it to also look up in the rails namespace, you
+ # just need to provide the :in value:
#
# class AwesomeGenerator < Rails::Generators::Base
# hook_for :test_framework, in: :rails, as: :controller