From: Ricardo Ungerer Date: Mon, 16 Mar 2026 22:02:17 +0000 (+0000) Subject: jobserver: Fix typo in docstring X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b4e099c221cd118b9dbe720586c1f1c71666d09;p=thirdparty%2Fkernel%2Flinux.git jobserver: Fix typo in docstring This commit fixes small typos in the docstring of jobserver.py. Signed-off-by: Ricardo Ungerer Signed-off-by: Jonathan Corbet Message-ID: <20260316220218.568022-1-ungerer.ricardo@gmail.com> --- diff --git a/tools/lib/python/jobserver.py b/tools/lib/python/jobserver.py index aba22c33393d3..0b1ffdf9f7a35 100755 --- a/tools/lib/python/jobserver.py +++ b/tools/lib/python/jobserver.py @@ -8,14 +8,14 @@ """ Interacts with the POSIX jobserver during the Kernel build time. -A "normal" jobserver task, like the one initiated by a make subrocess would do: +A "normal" jobserver task, like the one initiated by a make subprocess would do: - open read/write file descriptors to communicate with the job server; - ask for one slot by calling:: claim = os.read(reader, 1) - - when the job finshes, call:: + - when the job finishes, call:: os.write(writer, b"+") # os.write(writer, claim)