aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-12-19 21:06:12 -0500
committerJon Moss <me@jonathanmoss.me>2016-12-19 21:06:12 -0500
commita880ece03f1d98325354ad5952078ce0cee017ee (patch)
tree1b99333a5f8330fee42896eaf27a10f824327dff /railties
parent2e7edad3ac25c14f9e7a315db6a709384f3fde46 (diff)
downloadrails-a880ece03f1d98325354ad5952078ce0cee017ee.tar.gz
rails-a880ece03f1d98325354ad5952078ce0cee017ee.tar.bz2
rails-a880ece03f1d98325354ad5952078ce0cee017ee.zip
Capitalize Rake
[ci skip]
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/application.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/application.rb b/railties/lib/rails/application.rb
index f96432c89f..1712feba42 100644
--- a/railties/lib/rails/application.rb
+++ b/railties/lib/rails/application.rb
@@ -72,7 +72,7 @@ module Rails
# on one of the applications to create a copy of the application which shares
# the configuration.
#
- # If you decide to define rake tasks, runners, or initializers in an
+ # If you decide to define Rake tasks, runners, or initializers in an
# application other than +Rails.application+, then you must run them manually.
class Application < Engine
autoload :Bootstrap, "rails/application/bootstrap"
@@ -265,8 +265,8 @@ module Rails
end
end
- # If you try to define a set of rake tasks on the instance, these will get
- # passed up to the rake tasks defined on the application's class.
+ # If you try to define a set of Rake tasks on the instance, these will get
+ # passed up to the Rake tasks defined on the application's class.
def rake_tasks(&block)
self.class.rake_tasks(&block)
end