aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-12-31 11:26:23 +0100
committerRobin Dupret <robin.dupret@gmail.com>2014-12-31 11:26:23 +0100
commit7d1718f49eda0f78216bb232977bf254f7f32ebb (patch)
tree7451007485e331d176135c71f7bcf165f62746a0
parent8b2a5990a58a5be770643d3e0fc6f337989088fd (diff)
parent0f80b9f997c94bd3dce5d9f68de60ce02712162d (diff)
downloadrails-7d1718f49eda0f78216bb232977bf254f7f32ebb.tar.gz
rails-7d1718f49eda0f78216bb232977bf254f7f32ebb.tar.bz2
rails-7d1718f49eda0f78216bb232977bf254f7f32ebb.zip
Merge pull request #18274 from rajcybage/spell_fix
Fix spell life cycle on activejob docs [ci skip]
-rw-r--r--activejob/lib/active_job/callbacks.rb4
-rw-r--r--guides/source/active_job_basics.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/activejob/lib/active_job/callbacks.rb b/activejob/lib/active_job/callbacks.rb
index c4ceb484cc..2b6149e84e 100644
--- a/activejob/lib/active_job/callbacks.rb
+++ b/activejob/lib/active_job/callbacks.rb
@@ -3,8 +3,8 @@ require 'active_support/callbacks'
module ActiveJob
# = Active Job Callbacks
#
- # Active Job provides hooks during the lifecycle of a job. Callbacks allow you
- # to trigger logic during the lifecycle of a job. Available callbacks are:
+ # Active Job provides hooks during the life cycle of a job. Callbacks allow you
+ # to trigger logic during the life cycle of a job. Available callbacks are:
#
# * <tt>before_enqueue</tt>
# * <tt>around_enqueue</tt>
diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md
index 63b4409c6c..3046a62778 100644
--- a/guides/source/active_job_basics.md
+++ b/guides/source/active_job_basics.md
@@ -217,8 +217,8 @@ backends you need to specify the queues to listen to.
Callbacks
---------
-Active Job provides hooks during the lifecycle of a job. Callbacks allow you to
-trigger logic during the lifecycle of a job.
+Active Job provides hooks during the life cycle of a job. Callbacks allow you to
+trigger logic during the life cycle of a job.
### Available callbacks