]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
jobserver: Fix typo in docstring
authorRicardo Ungerer <ungerer.ricardo@gmail.com>
Mon, 16 Mar 2026 22:02:17 +0000 (22:02 +0000)
committerJonathan Corbet <corbet@lwn.net>
Tue, 17 Mar 2026 14:43:39 +0000 (08:43 -0600)
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>

tools/lib/python/jobserver.py

index aba22c33393d300ffb1cbcc1f148ec1fa42aba1d..0b1ffdf9f7a35eabcea515aac5a26aed3b2726a9 100755 (executable)
@@ -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)