SDL: Sync SDL3 wiki -> header (a5500)

From a55002b8ed5f73c86053b3688498dcbfb03edee3 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Thu, 23 Oct 2025 20:12:59 +0000
Subject: [PATCH] Sync SDL3 wiki -> header

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

diff --git a/include/SDL3/SDL_assert.h b/include/SDL3/SDL_assert.h
index 42fa1fd81e2c1..9644ce88ae9c1 100644
--- a/include/SDL3/SDL_assert.h
+++ b/include/SDL3/SDL_assert.h
@@ -177,12 +177,13 @@ extern "C" {
 #endif
 
 #ifndef SDL_FILE
+
 /**
  * A macro that reports the current file being compiled.
  *
- * This macro is only defined if it isn't already defined, so to override
- * it (perhaps with something that doesn't provide path information at all,
- * so build machine information doesn't leak into public binaries), apps can
+ * This macro is only defined if it isn't already defined, so to override it
+ * (perhaps with something that doesn't provide path information at all, so
+ * build machine information doesn't leak into public binaries), apps can
  * define this macro before including SDL_assert.h. For example, Clang and GCC
  * can define this to `FILE_NAME` to get just the source filename instead of
  * the full path.
@@ -193,12 +194,14 @@ extern "C" {
 #endif
 
 #ifndef SDL_ASSERT_FILE
+
 /**
- * A macro that reports the current file being compiled, for use in assertions.
+ * A macro that reports the current file being compiled, for use in
+ * assertions.
  *
- * This macro is only defined if it isn't already defined, so to override
- * it (perhaps with something that doesn't provide path information at all,
- * so build machine information doesn't leak into public binaries), apps can
+ * This macro is only defined if it isn't already defined, so to override it
+ * (perhaps with something that doesn't provide path information at all, so
+ * build machine information doesn't leak into public binaries), apps can
  * define this macro before including SDL_assert.h. For example, defining this
  * to `""` will make sure no source path information is included in asserts.
  *