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>
This commit is contained in:
Thorsten Blum
2025-12-19 18:18:26 +01:00
committed by Jonathan Corbet
parent f089d9b2c2
commit 82e87387f6

View 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::