aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-05-03 22:26:30 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-05-04 09:11:45 -0300
commit7a6116b633479effe81a820d84aaf29572cc3412 (patch)
treea29826077444ca3a208f6bd57f8fdb1cf9fd1259 /railties/lib
parent8fbf2e197f0a327ab95bc85b3d3d683e68e09cf3 (diff)
downloadrails-7a6116b633479effe81a820d84aaf29572cc3412.tar.gz
rails-7a6116b633479effe81a820d84aaf29572cc3412.tar.bz2
rails-7a6116b633479effe81a820d84aaf29572cc3412.zip
Add some docs and changelog entry
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/queueing.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/rails/queueing.rb b/railties/lib/rails/queueing.rb
index 896dd91034..b4bc7fcd18 100644
--- a/railties/lib/rails/queueing.rb
+++ b/railties/lib/rails/queueing.rb
@@ -16,13 +16,13 @@ module Rails
# Jobs are run in a separate thread to catch mistakes where code
# assumes that the job is run in the same thread.
class TestQueue < ::Queue
- # Get a list of the jobs off this queue. This method may not be
+ # Get a list of the jobs off this queue. This method may not be
# available on production queues.
def jobs
@que.dup
end
- # Drain the queue, running all jobs in a different thread. This method
+ # Drain the queue, running all jobs in a different thread. This method
# may not be available on production queues.
def drain
# run the jobs in a separate thread so assumptions of synchronous