SDL_mixer: Fix typo

From 61566f03f4940a3af5685588527a7fe67fbdbc96 Mon Sep 17 00:00:00 2001
From: Donione <[EMAIL REDACTED]>
Date: Wed, 28 Jan 2026 12:33:48 +0100
Subject: [PATCH] Fix typo

---
 include/SDL3_mixer/SDL_mixer.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/SDL3_mixer/SDL_mixer.h b/include/SDL3_mixer/SDL_mixer.h
index 9b51b4a6..c6c0ba35 100644
--- a/include/SDL3_mixer/SDL_mixer.h
+++ b/include/SDL3_mixer/SDL_mixer.h
@@ -1288,8 +1288,8 @@ extern SDL_DECLSPEC char ** SDLCALL MIX_GetTrackTags(MIX_Track *track, int *coun
  * \param count a pointer filled in with the number of tracks returned, can be
  *              NULL.
  * \returns an array of the tracks, NULL-terminated, or NULL on failure; call
- *          SDL_GetError() for more information. The returned pointer hould be
- *          freed with SDL_free() when it is no longer needed.
+ *          SDL_GetError() for more information. The returned pointer should
+ *          be freed with SDL_free() when it is no longer needed.
  *
  * \threadsafety It is safe to call this function from any thread.
  *