From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A6B1B3A4504 for ; Tue, 17 Mar 2026 14:44:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773758682; cv=none; b=nRSWFT85uf65hV/U2xw4v2UaaJecsknyYFZtyTHXKCYvu+CaupzndKTYrhO11pOtZUcriYT9w0BwLyh+5ZALwaVhvvTA1wtl94DUZP4MSgnUAm+T1CJcRgnZXy3qzR+9bslTc510BxKwW1V7rAb8ltOmear36fQyKGqczGM8MqA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773758682; c=relaxed/simple; bh=iQMXYOwcTyUvX4KQLkYfIW2921A6gPcBw60zCMixp+Y=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=U2OnyoZCcKBLA8VqPB5r5RrudRSh7IUfNixyt0L66/62nXg/uLzv6No4ozO9QAmiW0lBg471zsLACUN1OGux4y9VoAgRrA0FmCVzwJAbuJGPr7ndw7v0OvxWR809Wx2QnS6GE9TyQv5Bj1xCQcPiIFkzfAR1QgpSm0q4GDV0NNw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=GlE/vDVi; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="GlE/vDVi" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net F20B340C7C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1773758681; bh=XtarnQuNSoOF2XwevZC1PSwPAxCR3Nus+pOAALhZm/U=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=GlE/vDViVzKrK6abeR+PTYy7tmqjXtrx0+m4BqY55smMeRnGrbywxyiLPXOrPz+OU qeivp2U+Fevba1ijPu/XW5Cw5xots++pcvIZRy+AN0PZj4PVnf7Rf0TRGDWdKHc3q4 qBIy5PXuppPjJuMGdmSxlrEesDrT+RZeORpgN+YIRzzvFKVGBXCO9s9kXZlP7mCzAH apOp2qUBrmSw/80fnDfmKWpEBkU2TOSahlq/rk559UUOJyJXpZj9B/q6pvxxEkkwiu IolQeJHqX+F3/QL7izupRUYFMa40NssbzB6O5q4ej5qnZTfpI1Lc2mW3GjFFdLnv9S g8TWQCsf1dKWA== Received: from localhost (c-71-229-227-126.hsd1.co.comcast.net [71.229.227.126]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id F20B340C7C; Tue, 17 Mar 2026 14:44:40 +0000 (UTC) From: Jonathan Corbet To: Ricardo Ungerer , linux-kernel@vger.kernel.org Cc: Mauro Carvalho Chehab , Ricardo Ungerer Subject: Re: [PATCH v2] jobserver: Fix typo in docstring In-Reply-To: <20260316220218.568022-1-ungerer.ricardo@gmail.com> References: <20260316220218.568022-1-ungerer.ricardo@gmail.com> Date: Tue, 17 Mar 2026 08:44:40 -0600 Message-ID: <871phiecrr.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Ricardo Ungerer writes: > This commit fixes small typos in the docstring of jobserver.py. For future reference, our guidance says to avoid "this commit", and some maintainers are pretty firm about that. > Signed-off-by: Ricardo Ungerer > --- > Changes in v2: > - Fix a Sphynx regression created by v1 when removed the second colon. > --- > tools/lib/python/jobserver.py | 4 ++-- > 1 file 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:: > Applied, thanks. jon