From 1a9e6c368ffc191bbbc9c3ddc299a76cbbc6acad Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Tue, 3 Feb 2026 20:02:42 -0500
Subject: [PATCH] pen: Fixed a comment typo.
[ci skip]
---
include/SDL3/SDL_pen.h | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/include/SDL3/SDL_pen.h b/include/SDL3/SDL_pen.h
index 63f32bb68a2cb..c3822d9bd02f6 100644
--- a/include/SDL3/SDL_pen.h
+++ b/include/SDL3/SDL_pen.h
@@ -53,12 +53,12 @@
* doesn't seem to, it might actually be the operating system's fault. For
* example, some platforms can manage multiple devices at the same time, but
* others will make any connected pens look like a single logical device, much
- * how all USB mice connected to a computer will move the same system cursor.
- * Other platforms might not support pen buttons, or the distance axis, etc.
- * Very few platforms can even report _what_ functionality the pen supports in
- * the first place, so best practices is to either build UI to let the user
- * configure their pens, or be prepared to handle new functionality for a pen
- * the first time an event is reported.
+ * like how all USB mice connected to a computer will move the same system
+ * cursor. Other platforms might not support pen buttons, or the distance
+ * axis, etc. Very few platforms can even report _what_ functionality the pen
+ * supports in the first place, so best practices is to either build UI to let
+ * the user configure their pens, or be prepared to handle new functionality
+ * for a pen the first time an event is reported.
*/
#ifndef SDL_pen_h_