diff options
| author | Ricardo Ungerer <ungerer.ricardo@gmail.com> | 2026-03-16 22:02:17 +0000 |
|---|---|---|
| committer | Jonathan Corbet <corbet@lwn.net> | 2026-03-17 08:43:39 -0600 |
| commit | 9b4e099c221cd118b9dbe720586c1f1c71666d09 (patch) | |
| tree | 989f23f3f473fc8a6708503306501de707b912a4 /tools/lib/python | |
| parent | d0eab64faf0c3b5a354a4ff1eff1b86808014559 (diff) | |
jobserver: Fix typo in docstring
This commit fixes small typos in the docstring of jobserver.py.
Signed-off-by: Ricardo Ungerer <ungerer.ricardo@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20260316220218.568022-1-ungerer.ricardo@gmail.com>
Diffstat (limited to 'tools/lib/python')
| -rwxr-xr-x | tools/lib/python/jobserver.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/python/jobserver.py b/tools/lib/python/jobserver.py index aba22c33393d..0b1ffdf9f7a3 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) |
