diff options
author | RobertZK <technoguyrob@gmail.com> | 2015-02-10 21:15:23 -0600 |
---|---|---|
committer | RobertZK <technoguyrob@gmail.com> | 2015-02-10 21:15:23 -0600 |
commit | d3ebc8021b72be8c19ab466a5e1a4a3198d3fab9 (patch) | |
tree | f8583783a0c2359bef989a6db3fc4e46371153ba | |
parent | e5e0b47c67e0e88000680874b2065136f9fc86a2 (diff) | |
download | rails-d3ebc8021b72be8c19ab466a5e1a4a3198d3fab9.tar.gz rails-d3ebc8021b72be8c19ab466a5e1a4a3198d3fab9.tar.bz2 rails-d3ebc8021b72be8c19ab466a5e1a4a3198d3fab9.zip |
Fix typo in Rails::Application#migration_railties
-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 |