summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2023-11-05 14:20:42 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-11-05 17:51:31 +0100
commit0053dfbabd8b6711ea7e9354e5792048931daf7c (patch)
tree7f26fb82713741cf421b9d0e04acd56ec848b01d /solenv
parentd0d94ec8b82baaba185e3629bcc7ba44bc559c35 (diff)
Fix typo
Change-Id: I84186bee245a95a74e92c974ca94bb81c31ee1ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158950 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/job-limiter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/job-limiter.cpp b/solenv/bin/job-limiter.cpp
index c5757bfb4a27..a94aafde9687 100644
--- a/solenv/bin/job-limiter.cpp
+++ b/solenv/bin/job-limiter.cpp
@@ -12,7 +12,7 @@
// Ideally it would hook into make's jobserver, but it is too easy to deadlock the build at the
// packaging stage (all jobs are started at once, consuming all available slots as part of general
// parallelism, and then each job waiting for an additional job token but since all jobs are in
-// waiting stage: you have a dealock)
+// waiting stage: you have a deadlock).
// That in turn is an advantage for a simple approach with separate lock and release commands, since
// everything is started at once, and all jobs that will be queued are all jobs that use the helper,
// there will be jobs in waiting state and keeping the semaphore active as long as it matters.