From: Gabriele Ricciardi Date: Sat, 1 Nov 2025 22:31:19 +0000 (+0000) Subject: coding-style: fix verb typo X-Git-Tag: v6.19-rc1~184^2~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c62e2e874d151d56842fbfd29c3ffaf4e83dba4;p=thirdparty%2Flinux.git coding-style: fix verb typo In the Identation section there is a list of instructions in second-person. The offending line uses third-person singular. Signed-off-by: Gabriele Ricciardi Acked-by: Randy Dunlap Signed-off-by: Jonathan Corbet Message-ID: <20251101223027.171874-1-gricciardi-coding@pm.me> --- diff --git a/Documentation/process/coding-style.rst b/Documentation/process/coding-style.rst index d1a8e5465ed95..2969ca378dbb2 100644 --- a/Documentation/process/coding-style.rst +++ b/Documentation/process/coding-style.rst @@ -76,7 +76,7 @@ Don't use commas to avoid using braces: if (condition) do_this(), do_that(); -Always uses braces for multiple statements: +Always use braces for multiple statements: .. code-block:: c