From: Thorsten Blum Date: Fri, 19 Dec 2025 17:18:26 +0000 (+0100) Subject: Documentation: kernel-hacking: Remove comma X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82e87387f6e2af9f69a7528733e953fd22e815aa;p=thirdparty%2Fkernel%2Flinux.git Documentation: kernel-hacking: Remove comma The comma is wrong, remove it. Signed-off-by: Thorsten Blum Acked-by: Randy Dunlap Signed-off-by: Jonathan Corbet Message-ID: <20251219171827.44015-2-thorsten.blum@linux.dev> --- diff --git a/Documentation/kernel-hacking/hacking.rst b/Documentation/kernel-hacking/hacking.rst index 0042776a9e17c..06fcb7c662d3c 100644 --- a/Documentation/kernel-hacking/hacking.rst +++ b/Documentation/kernel-hacking/hacking.rst @@ -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::