SDL_ttf: Fix genexports.py documentation warnings

From 2f70cb57137db4bafb3aee6d187bc2edd349271a Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Mon, 17 Nov 2025 19:48:33 +0100
Subject: [PATCH] Fix genexports.py documentation warnings

---
 include/SDL3_ttf/SDL_ttf.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/SDL3_ttf/SDL_ttf.h b/include/SDL3_ttf/SDL_ttf.h
index c785c8cf..af1cf5e0 100644
--- a/include/SDL3_ttf/SDL_ttf.h
+++ b/include/SDL3_ttf/SDL_ttf.h
@@ -982,6 +982,7 @@ extern SDL_DECLSPEC TTF_Direction SDLCALL TTF_GetFontDirection(TTF_Font *font);
  * This updates any TTF_Text objects using this font.
  *
  * \param font the font to specify a direction for.
+ * \param spacing the new additional glyph spacing for the font.
  * \returns true on success or false on failure; call SDL_GetError() for more
  *          information.
  *
@@ -2370,6 +2371,8 @@ extern SDL_DECLSPEC bool SDLCALL TTF_GetTextColorFloat(TTF_Text *text, float *r,
  * \param text the TTF_Text to modify.
  * \param x the x offset of the upper left corner of this text in pixels.
  * \param y the y offset of the upper left corner of this text in pixels.
+ * \returns true on success or false on failure; call SDL_GetError() for more
+ *          information.
  *
  * \threadsafety This function should be called on the thread that created the
  *               text.
@@ -2388,6 +2391,8 @@ extern SDL_DECLSPEC bool SDLCALL TTF_SetTextPosition(TTF_Text *text, int x, int
  *          this text in pixels, may be NULL.
  * \param y a pointer filled in with the y offset of the upper left corner of
  *          this text in pixels, may be NULL.
+ * \returns true on success or false on failure; call SDL_GetError() for more
+ *          information.
  *
  * \threadsafety This function should be called on the thread that created the
  *               text.