summaryrefslogtreecommitdiff
path: root/Documentation/kernel-hacking
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@linux.dev>2025-12-19 18:18:26 +0100
committerJonathan Corbet <corbet@lwn.net>2025-12-22 14:40:24 -0700
commit82e87387f6e2af9f69a7528733e953fd22e815aa (patch)
tree9caa217f617b7a962a4127cae4f1ad4aa8f1de93 /Documentation/kernel-hacking
parentf089d9b2c229bc5d565c13d333a6c86ae47e0b6c (diff)
Documentation: kernel-hacking: Remove comma
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>
Diffstat (limited to 'Documentation/kernel-hacking')
-rw-r--r--Documentation/kernel-hacking/hacking.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/kernel-hacking/hacking.rst b/Documentation/kernel-hacking/hacking.rst
index 0042776a9e17..06fcb7c662d3 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::