diff options
author | Arthur Nogueira Neves <arthurnn@gmail.com> | 2015-02-10 23:02:35 -0500 |
---|---|---|
committer | Arthur Nogueira Neves <arthurnn@gmail.com> | 2015-02-10 23:02:35 -0500 |
commit | 32cd45e7b255e94fc45842a3e48ce5b12a9b4bc1 (patch) | |
tree | f8583783a0c2359bef989a6db3fc4e46371153ba /railties/lib/rails | |
parent | e5e0b47c67e0e88000680874b2065136f9fc86a2 (diff) | |
parent | d3ebc8021b72be8c19ab466a5e1a4a3198d3fab9 (diff) | |
download | rails-32cd45e7b255e94fc45842a3e48ce5b12a9b4bc1.tar.gz rails-32cd45e7b255e94fc45842a3e48ce5b12a9b4bc1.tar.bz2 rails-32cd45e7b255e94fc45842a3e48ce5b12a9b4bc1.zip |
Merge pull request #18891 from robertzk/typo_in_rails_application_rb
Fix typo in Rails::Application#migration_railties documentation [ci-skip]
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/application.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/application.rb b/railties/lib/rails/application.rb index 8da73db821..b11815e013 100644 --- a/railties/lib/rails/application.rb +++ b/railties/lib/rails/application.rb @@ -428,8 +428,8 @@ module Rails # and the order specified by the +railties_order+ config. # # While when running initializers we need engines in reverse - # order here when copying migrations from railties we need then in the same - # order as given by +railties_order+ + # order here when copying migrations from railties we need them in the same + # order as given by +railties_order+. def migration_railties # :nodoc: ordered_railties.flatten - [self] end |