diff options
Diffstat (limited to 'doc/development/reusing_abstractions.md')
-rw-r--r-- | doc/development/reusing_abstractions.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/development/reusing_abstractions.md b/doc/development/reusing_abstractions.md index edd8c85cfb8..fce144f8dc2 100644 --- a/doc/development/reusing_abstractions.md +++ b/doc/development/reusing_abstractions.md @@ -214,5 +214,4 @@ The API provided by Active Record itself, such as the `where` method, `save`, Everything in `app/workers`. Use `SomeWorker.perform_async` or `SomeWorker.perform_in` to schedule Sidekiq -jobs. Never directly invoke a worker using `SomeWorker.new.perform`, -though this is fine to use in tests. +jobs. Never directly invoke a worker using `SomeWorker.new.perform`. |