diff options
author | Jon Moss <me@jonathanmoss.me> | 2016-12-19 20:47:44 -0500 |
---|---|---|
committer | Jon Moss <me@jonathanmoss.me> | 2016-12-19 20:47:44 -0500 |
commit | 2e7edad3ac25c14f9e7a315db6a709384f3fde46 (patch) | |
tree | 89f83b666bb4885af20a2a5dbae77af7d255501a /railties | |
parent | 9e54b0566f9d76ac430d34b5877ad1546ce233e8 (diff) | |
download | rails-2e7edad3ac25c14f9e7a315db6a709384f3fde46.tar.gz rails-2e7edad3ac25c14f9e7a315db6a709384f3fde46.tar.bz2 rails-2e7edad3ac25c14f9e7a315db6a709384f3fde46.zip |
Capitalize Ruby and small grammar fix
[ci skip]
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/engine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index 6ff2cfd961..53334489aa 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -549,7 +549,7 @@ module Rails load(seed_file) if seed_file end - # Add configured load paths to ruby load paths and remove duplicates. + # Add configured load paths to Ruby's load path, and remove duplicate entries. initializer :set_load_path, before: :bootstrap_hook do _all_load_paths.reverse_each do |path| $LOAD_PATH.unshift(path) if File.directory?(path) |