aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2015-02-25 06:45:00 +0000
committerAbdelkader Boudih <terminale@gmail.com>2015-02-25 06:45:00 +0000
commit80ed46064dca5008f63c274fbfd49da722e54824 (patch)
tree9ea0945e3823d61f3b15c44347d322841928fafb
parent149a1e16d492e8a313fb04686ae64accaeeda06e (diff)
parent0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c (diff)
downloadrails-80ed46064dca5008f63c274fbfd49da722e54824.tar.gz
rails-80ed46064dca5008f63c274fbfd49da722e54824.tar.bz2
rails-80ed46064dca5008f63c274fbfd49da722e54824.zip
Merge pull request #19069 from robertzk/patch-1
fix typo [ci-skip]
-rw-r--r--railties/lib/rails/paths.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/paths.rb b/railties/lib/rails/paths.rb
index 5458036219..ebcaaaba46 100644
--- a/railties/lib/rails/paths.rb
+++ b/railties/lib/rails/paths.rb
@@ -7,7 +7,7 @@ module Rails
# root = Root.new "/rails"
# root.add "app/controllers", eager_load: true
#
- # The command above creates a new root object and add "app/controllers" as a path.
+ # The command above creates a new root object and adds "app/controllers" as a path.
# This means we can get a <tt>Rails::Paths::Path</tt> object back like below:
#
# path = root["app/controllers"]