1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

fix syntax highlighting in documentation for Sidekiq::Worker (#4042)

This commit is contained in:
Ryan Ong 2018-12-06 09:10:48 -05:00 committed by Mike Perham
parent 30bbd13a5e
commit 4eb54965dc

View file

@ -7,13 +7,13 @@ module Sidekiq
# Include this module in your worker class and you can easily create
# asynchronous jobs:
#
# class HardWorker
# include Sidekiq::Worker
# class HardWorker
# include Sidekiq::Worker
#
# def perform(*args)
# # do some work
# def perform(*args)
# # do some work
# end
# end
# end
#
# Then in your Rails app, you can do this:
#