aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-08-29 12:36:45 +0200
committerRobin Dupret <robin.dupret@gmail.com>2014-08-29 12:37:14 +0200
commit38d6c722b23bae2eeb82a63fc1e78c0937bed17a (patch)
tree5db1c55da5013dc480280b10f97ff38d3b9ef116 /activejob
parent7447e0b9943bcd7ba99921c014c32927c2858343 (diff)
downloadrails-38d6c722b23bae2eeb82a63fc1e78c0937bed17a.tar.gz
rails-38d6c722b23bae2eeb82a63fc1e78c0937bed17a.tar.bz2
rails-38d6c722b23bae2eeb82a63fc1e78c0937bed17a.zip
Some documentation fixes [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r--activejob/lib/active_job/callbacks.rb4
-rw-r--r--activejob/lib/active_job/gem_version.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/activejob/lib/active_job/callbacks.rb b/activejob/lib/active_job/callbacks.rb
index 8901fa77f2..cafa3438c0 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:
+ # 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:
#
# * <tt>before_enqueue</tt>
# * <tt>around_enqueue</tt>
diff --git a/activejob/lib/active_job/gem_version.rb b/activejob/lib/active_job/gem_version.rb
index 2545e09845..c166020b28 100644
--- a/activejob/lib/active_job/gem_version.rb
+++ b/activejob/lib/active_job/gem_version.rb
@@ -1,5 +1,5 @@
module ActiveJob
- # Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
+ # Returns the version of the currently loaded ActiveJob as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end