From 8ddf05855be9f41de3eb7ed1200e54ac3c071edb Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Sun, 9 Jun 2024 13:21:07 -0400
Subject: [PATCH] iostream: clarified SDL_IO_STATUS_READY documentation.
---
include/SDL3/SDL_iostream.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/SDL3/SDL_iostream.h b/include/SDL3/SDL_iostream.h
index a0543e9de7a65..c10572597fbfb 100644
--- a/include/SDL3/SDL_iostream.h
+++ b/include/SDL3/SDL_iostream.h
@@ -52,7 +52,7 @@ extern "C" {
*/
typedef enum SDL_IOStatus
{
- SDL_IO_STATUS_READY, /**< Everything is ready (no error or EOF). */
+ SDL_IO_STATUS_READY, /**< Everything is ready (no errors and not EOF). */
SDL_IO_STATUS_ERROR, /**< Read or write I/O error */
SDL_IO_STATUS_EOF, /**< End of file */
SDL_IO_STATUS_NOT_READY, /**< Non blocking I/O, not ready */