SDL_mixer: Sync SDL3_mixer wiki -> header (4345f)

From 4345f580eb6cffb5382f9fcd837ddaf3b9a91677 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Tue, 29 Jul 2025 20:25:26 +0000
Subject: [PATCH] Sync SDL3_mixer wiki -> header

[ci skip]
---
 include/SDL3_mixer/SDL_mixer.h | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

diff --git a/include/SDL3_mixer/SDL_mixer.h b/include/SDL3_mixer/SDL_mixer.h
index 064601c4..e8f2b9ad 100644
--- a/include/SDL3_mixer/SDL_mixer.h
+++ b/include/SDL3_mixer/SDL_mixer.h
@@ -1360,9 +1360,8 @@ extern SDL_DECLSPEC Sint64 SDLCALL MIX_GetTrackRemaining(MIX_Track *track);
  * together).
  *
  * On various errors (MIX_Init() was not called, the track is NULL), this
- * returns -1.
- * If the track has no input, this returns -1.
- * If `ms` is < 0, this returns -1.
+ * returns -1. If the track has no input, this returns -1. If `ms` is < 0,
+ * this returns -1.
  *
  * \param track the track to query.
  * \param ms the milliseconds to convert to track-specific sample frames.
@@ -1389,9 +1388,8 @@ extern SDL_DECLSPEC Sint64 SDLCALL MIX_TrackMSToFrames(MIX_Track *track, Sint64
  * function will approximate by rounding down to the closest full millisecond.
  *
  * On various errors (MIX_Init() was not called, the track is NULL), this
- * returns -1.
- * If the track has no input, this returns -1.
- * If `frames` is < 0, this returns -1.
+ * returns -1. If the track has no input, this returns -1. If `frames` is < 0,
+ * this returns -1.
  *
  * \param track the track to query.
  * \param frames the track-specific sample frames to convert to milliseconds.
@@ -1454,8 +1452,7 @@ extern SDL_DECLSPEC Sint64 SDLCALL MIX_AudioFramesToMS(MIX_Audio *audio, Sint64
 /**
  * Convert milliseconds to sample frames at a specific sample rate.
  *
- * If `sample_rate` is <= 0, this returns -1.
- * If `ms` is < 0, this returns -1.
+ * If `sample_rate` is <= 0, this returns -1. If `ms` is < 0, this returns -1.
  *
  * \param sample_rate the sample rate to use for conversion.
  * \param ms the milliseconds to convert to rate-specific sample frames.
@@ -1476,8 +1473,8 @@ extern SDL_DECLSPEC Sint64 SDLCALL MIX_MSToFrames(int sample_rate, Sint64 ms);
  * Sample frames are more precise than milliseconds, so out of necessity, this
  * function will approximate by rounding down to the closest full millisecond.
  *
- * If `sample_rate` is <= 0, this returns -1.
- * If `frames` is < 0, this returns -1.
+ * If `sample_rate` is <= 0, this returns -1. If `frames` is < 0, this returns
+ * -1.
  *
  * \param sample_rate the sample rate to use for conversion.
  * \param frames the rate-specific sample frames to convert to milliseconds.