소스 검색

Fix trailing doc comments

Maia 1 년 전
부모
커밋
a24c164956
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      include/SDL3/SDL_init.h

+ 3 - 3
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[]);