summaryrefslogtreecommitdiff
path: root/app/workers
diff options
context:
space:
mode:
authoryukihir0 <yukihiro.cotori@gmail.com>2018-11-15 19:15:03 +0900
committeryukihir0 <yukihiro.cotori@gmail.com>2018-11-15 19:15:03 +0900
commitb8bd7ef8097e47a44055d712ab818d4bd6cabc77 (patch)
tree2403fbcc6db8316b501353ccf1195c5342edff0b /app/workers
parentf31aea1722c11263b17d01e4ac2f8ba214ffcd0f (diff)
downloadgitlab-ce-b8bd7ef8097e47a44055d712ab818d4bd6cabc77.tar.gz
Fix types comment
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/build_finished_worker.rb2
-rw-r--r--app/workers/process_commit_worker.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/workers/build_finished_worker.rb b/app/workers/build_finished_worker.rb
index 51cbbe8882e..61d866b1f02 100644
--- a/app/workers/build_finished_worker.rb
+++ b/app/workers/build_finished_worker.rb
@@ -13,7 +13,7 @@ class BuildFinishedWorker
BuildTraceSectionsWorker.new.perform(build.id)
BuildCoverageWorker.new.perform(build.id)
- # We execute that async as this are two indepentent operations that can be executed after TraceSections and Coverage
+ # We execute that async as this are two independent operations that can be executed after TraceSections and Coverage
BuildHooksWorker.perform_async(build.id)
ArchiveTraceWorker.perform_async(build.id)
end
diff --git a/app/workers/process_commit_worker.rb b/app/workers/process_commit_worker.rb
index 7b167c95c29..29a7f8e691a 100644
--- a/app/workers/process_commit_worker.rb
+++ b/app/workers/process_commit_worker.rb
@@ -1,6 +1,6 @@
# frozen_string_literal: true
-# Worker for processing individiual commit messages pushed to a repository.
+# Worker for processing individual commit messages pushed to a repository.
#
# Jobs for this worker are scheduled for every commit that is being pushed. As a
# result of this the workload of this worker should be kept to a bare minimum.