aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Krzyzanowski <technoguyrob@gmail.com>2015-02-25 00:25:58 -0600
committerRobert Krzyzanowski <technoguyrob@gmail.com>2015-02-25 00:25:58 -0600
commit0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c (patch)
tree9ea0945e3823d61f3b15c44347d322841928fafb
parent149a1e16d492e8a313fb04686ae64accaeeda06e (diff)
downloadrails-0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c.tar.gz
rails-0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c.tar.bz2
rails-0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c.zip
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"]