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>
master
Ricardo Ungerer 2026-03-16 22:02:17 +00:00 committed by Jonathan Corbet
parent d0eab64faf
commit 9b4e099c22
1 changed files with 2 additions and 2 deletions

View File

@ -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)