From a24c164956cf44be848aa229caa430f8ee9722db Mon Sep 17 00:00:00 2001
From: Maia <[EMAIL REDACTED]>
Date: Tue, 27 Aug 2024 21:44:52 +0200
Subject: [PATCH] Fix trailing doc comments
---
include/SDL3/SDL_init.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/SDL3/SDL_init.h b/include/SDL3/SDL_init.h
index 503bdb302ccf7..0e42ecc1a3572 100644
--- a/include/SDL3/SDL_init.h
+++ b/include/SDL3/SDL_init.h
@@ -89,9 +89,9 @@ typedef Uint32 SDL_InitFlags;
*/
typedef enum SDL_AppResult
{
- SDL_APP_CONTINUE, /** Value that requests that the app continue from the main callbacks. */
- SDL_APP_SUCCESS, /** Value that requests termination with success from the main callbacks. */
- SDL_APP_FAILURE /** Value that requests termination with error from the main callbacks. */
+ SDL_APP_CONTINUE, /**< Value that requests that the app continue from the main callbacks. */
+ SDL_APP_SUCCESS, /**< Value that requests termination with success from the main callbacks. */
+ SDL_APP_FAILURE /**< Value that requests termination with error from the main callbacks. */
} SDL_AppResult;
typedef SDL_AppResult (SDLCALL *SDL_AppInit_func)(void **appstate, int argc, char *argv[]);