]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Documentation: kernel-hacking: Remove comma
authorThorsten Blum <thorsten.blum@linux.dev>
Fri, 19 Dec 2025 17:18:26 +0000 (18:18 +0100)
committerJonathan Corbet <corbet@lwn.net>
Mon, 22 Dec 2025 21:40:24 +0000 (14:40 -0700)
The comma is wrong, remove it.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <20251219171827.44015-2-thorsten.blum@linux.dev>

Documentation/kernel-hacking/hacking.rst

index 0042776a9e17cfc5d09b5de043cd4131b54192a9..06fcb7c662d3c4bdb1960a3b0263d63285c1c43d 100644 (file)
@@ -49,7 +49,7 @@ User Context
 
 User context is when you are coming in from a system call or other trap:
 like userspace, you can be preempted by more important tasks and by
-interrupts. You can sleep, by calling :c:func:`schedule()`.
+interrupts. You can sleep by calling :c:func:`schedule()`.
 
 .. note::