From 1f34f35b256831345fb21b71da3b9561c76a1855 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Mon, 19 Aug 2024 00:55:27 +0000
Subject: [PATCH] Sync SDL3 wiki -> header
---
include/SDL3/SDL_assert.h | 1 +
include/SDL3/SDL_hints.h | 10 ++++++----
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/include/SDL3/SDL_assert.h b/include/SDL3/SDL_assert.h
index 6e4f92428e519..96a47c85da61a 100644
--- a/include/SDL3/SDL_assert.h
+++ b/include/SDL3/SDL_assert.h
@@ -333,6 +333,7 @@ extern SDL_DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *
* "break" so that your debugger takes control as soon as assert is triggered,
* instead of risking a bad UI interaction (deadlock, etc) in the application.
* *
+ *
* \param condition boolean value to test.
*
* \since This macro is available since SDL 3.0.0.
diff --git a/include/SDL3/SDL_hints.h b/include/SDL3/SDL_hints.h
index 22938f3b5f358..27a64768f7291 100644
--- a/include/SDL3/SDL_hints.h
+++ b/include/SDL3/SDL_hints.h
@@ -4128,15 +4128,17 @@ extern "C" {
* - "abort": Program terminates immediately.
* - "break": Program triggers a debugger breakpoint.
* - "retry": Program reruns the SDL_assert's test again.
- * - "ignore": Program continues on, ignoring this assertion failure this time.
- * - "always_ignore": Program continues on, ignoring this assertion failure for the rest of the run.
+ * - "ignore": Program continues on, ignoring this assertion failure this
+ * time.
+ * - "always_ignore": Program continues on, ignoring this assertion failure
+ * for the rest of the run.
*
* Note that SDL_SetAssertionHandler offers a programmatic means to deal with
* assertion failures through a callback, and this hint is largely intended to
* be used via environment variables by end users and automated tools.
*
- * This hint should be set before an assertion failure is triggered and can
- * be changed at any time.
+ * This hint should be set before an assertion failure is triggered and can be
+ * changed at any time.
*
* \since This hint is available since SDL 3.0.0.
*/