SDL: pen: Fixed incorrect comment.

From dd18d7ff52a8ce3ce32d205e27d39673c61a90c1 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Tue, 3 Feb 2026 19:44:29 -0500
Subject: [PATCH] pen: Fixed incorrect comment.

---
 src/events/SDL_pen_c.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/SDL_pen_c.h b/src/events/SDL_pen_c.h
index 37d38cfa9dff0..0d4a6a0939b45 100644
--- a/src/events/SDL_pen_c.h
+++ b/src/events/SDL_pen_c.h
@@ -81,7 +81,7 @@ extern void SDL_SendPenAxis(Uint64 timestamp, SDL_PenID instance_id, SDL_Window
 // Backend calls this when a pen's button changes, to generate events and update state.
 extern void SDL_SendPenButton(Uint64 timestamp, SDL_PenID instance_id, SDL_Window *window, Uint8 button, bool down);
 
-// Backend calls this when a pen's button changes, to generate events and update state.
+// Backend calls this when a pen's proximity changes, to generate events and update state.
 extern void SDL_SendPenProximity(Uint64 timestamp, SDL_PenID instance_id, SDL_Window *window, bool in);
 
 // Backend can optionally use this to find the SDL_PenID for the `handle` that was passed to SDL_AddPenDevice.