]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
coding-style: fix verb typo
authorGabriele Ricciardi <gricciardi-coding@pm.me>
Sat, 1 Nov 2025 22:31:19 +0000 (22:31 +0000)
committerJonathan Corbet <corbet@lwn.net>
Mon, 3 Nov 2025 23:11:24 +0000 (16:11 -0700)
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 <gricciardi-coding@pm.me>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20251101223027.171874-1-gricciardi-coding@pm.me>

Documentation/process/coding-style.rst

index d1a8e5465ed9568c88b2fd27a5f6866a50a10d8e..2969ca378dbb29ecc2f2df19d5bb812fe2ec8663 100644 (file)
@@ -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