diff options
author | Tom Copeland <tom.copeland@livingsocial.com> | 2015-08-07 10:12:52 -0400 |
---|---|---|
committer | Tom Copeland <tom.copeland@livingsocial.com> | 2015-08-07 10:12:56 -0400 |
commit | 7a3566ea3f2fccb3ecaf6693c16a725237228de7 (patch) | |
tree | d6dc9097e67a4906bd5c9b97986f7995e9c139c1 /guides/source | |
parent | d96a1b62d7c957fcf4ab818ff06e6d5bfc6f3b2d (diff) | |
download | rails-7a3566ea3f2fccb3ecaf6693c16a725237228de7.tar.gz rails-7a3566ea3f2fccb3ecaf6693c16a725237228de7.tar.bz2 rails-7a3566ea3f2fccb3ecaf6693c16a725237228de7.zip |
Fix doc typo
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 17309d4b47..743241d7a0 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -75,7 +75,7 @@ warning by adding the following configuration to your `config/application.rb`: See [#17227](https://github.com/rails/rails/pull/17227) for more details. -### ActiveJob jobs now inherent from ApplicationJob by default +### ActiveJob jobs now inherit from ApplicationJob by default In Rails 4.2 an ActiveJob inherits from `ActiveJob::Base`. In Rails 5.0 this behavior has changed to now inherit from `ApplicationJob`. |