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 1087C35F603 for ; Tue, 3 Mar 2026 17:24:44 +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=1772558686; cv=none; b=K08ZaxLcNFbjN7oYBLXyf4MTVNMMRTro8UdKWX0qE/LMIbWKGlOx/KhGYuI6/Zw8yacv4lLbaxtVH1gRSGWMsjxMvTSRu9ow9MimbljVeGViX+x5o4I+K0f38qgYCXBd2GqtoY2hFXubXnjwbPaDpfNk1t9Z5RpU+dHCMlZdT0A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772558686; c=relaxed/simple; bh=RsTrgQyFiH3tt5HYLreC1CrQr8QWgQdBAAIhGSYOWY4=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=k1hroMgGm/7CWN3kSiWqF9HENQbTU3XShp75Ox+hG7jcnxEubz8sIUDn7JwE+Sg7Ppq3PR9ZydSE4UG0CRe06u9eR+JOw6okyQ2kYfwHbrKqQ4boQnGflkNahVIY2ta5GcqWn5zpemJQ5TOgcaX/qdKJhMOXL1fBlCp+ls37y4E= 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=McCXGWUs; 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="McCXGWUs" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 5AE3840429 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1772558684; bh=y4QBrGk/np5sSYhZGUeMwuesE6tv3mdYPROINYMBgtE=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=McCXGWUsDCriltJejQrD27oX+o4q20SajO/p7B8rA2L/JUROcM2+BZWE9hvlKI58g tzNTBXivbUd/BWzLW6VQoYQo8qHVQ/Zta4sU/qsd/IKngjBWEVKndj7sdIlyfOJoB5 8iW1nGscRCori5N5BkJ6/naCDjty5102wUaHrzMK1vravGH/DT53u+tTL6j2tsjUDn KvJAOfWHTE4CrkrUTH0ABJsLOEItP9z7aKo0sSvu92kR42jNYaVTuRglbpHPQAy4X1 SuDexxFVwulhRHOQsCJlFxaQUmMKWPf7m/h4D79pSskGNSOVCNV52cWJhcKxkozfOY CwfT5QlZj434g== Received: from localhost (unknown [IPv6:2601:280:4600:27b::1fe]) (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 5AE3840429; Tue, 3 Mar 2026 17:24:44 +0000 (UTC) From: Jonathan Corbet To: Ariful Islam Shoikot , linux-doc@vger.kernel.org Cc: Ariful Islam Shoikot Subject: Re: [PATCH] Documentation: process: backporting: fix missing subject In-Reply-To: <20260226120129.18610-1-islamarifulshoikat@gmail.com> References: <20260226120129.18610-1-islamarifulshoikat@gmail.com> Date: Tue, 03 Mar 2026 10:24:43 -0700 Message-ID: <871pi0ddwk.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Ariful Islam Shoikot writes: > Add the missing "it" in the sentence: > "even though it could have been changed by other patches." > > This is a grammatical error in the Error handling section. > > Signed-off-by: Ariful Islam Shoikot > --- > Documentation/process/backporting.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/process/backporting.rst b/Documentation/process/backporting.rst > index c42779fbcd33..0de9eacd46a7 100644 > --- a/Documentation/process/backporting.rst > +++ b/Documentation/process/backporting.rst > @@ -432,7 +432,7 @@ The same goes for added ``return``, ``break``, and ``continue`` > statements. > > Error handling is typically located at the bottom of the function, so it > -may not be part of the conflict even though could have been changed by > +may not be part of the conflict even though it could have been changed by > other patches. Applied, thanks. jon