diff options
author | Robert Krzyzanowski <technoguyrob@gmail.com> | 2015-02-25 00:25:58 -0600 |
---|---|---|
committer | Robert Krzyzanowski <technoguyrob@gmail.com> | 2015-02-25 00:25:58 -0600 |
commit | 0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c (patch) | |
tree | 9ea0945e3823d61f3b15c44347d322841928fafb | |
parent | 149a1e16d492e8a313fb04686ae64accaeeda06e (diff) | |
download | rails-0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c.tar.gz rails-0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c.tar.bz2 rails-0e9e9d62aaed7739bcf0fc41daf34fc4a66f051c.zip |
fix typo [ci-skip]
-rw-r--r-- | railties/lib/rails/paths.rb | 2 |
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"] |