SDL: Sync SDL3 wiki -> header (dbe82)

From dbe82e685dc294c02572ec25c7689e88db370248 Mon Sep 17 00:00:00 2001
From: SDL Wiki Bot <[EMAIL REDACTED]>
Date: Fri, 8 Nov 2024 01:55:37 +0000
Subject: [PATCH] Sync SDL3 wiki -> header

[ci skip]
---
 include/SDL3/SDL_iostream.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/SDL3/SDL_iostream.h b/include/SDL3/SDL_iostream.h
index 433fd1fac6ec6..9ee15f1f1293d 100644
--- a/include/SDL3/SDL_iostream.h
+++ b/include/SDL3/SDL_iostream.h
@@ -694,14 +694,14 @@ extern SDL_DECLSPEC void * SDLCALL SDL_LoadFile(const char *file, size_t *datasi
  *
  * \param src the SDL_IOStream to write all data to.
  * \param data the data to be written. If datasize is 0, may be NULL or a
- *        invalid pointer.
+ *             invalid pointer.
  * \param datasize the number of bytes to be written.
  * \param closeio if true, calls SDL_CloseIO() on `src` before returning, even
  *                in the case of an error.
  * \returns true on success or false on failure; call SDL_GetError() for more
  *          information.
  *
- * \since This function is available since SDL 3.1.3.
+ * \since This function is available since SDL 3.2.0.
  *
  * \sa SDL_SaveFile
  * \sa SDL_LoadFile_IO
@@ -713,12 +713,12 @@ extern SDL_DECLSPEC bool SDLCALL SDL_SaveFile_IO(SDL_IOStream *src, const void *
  *
  * \param file the path to read all available data from.
  * \param data the data to be written. If datasize is 0, may be NULL or a
- *        invalid pointer.
+ *             invalid pointer.
  * \param datasize the number of bytes to be written.
  * \returns true on success or false on failure; call SDL_GetError() for more
  *          information.
  *
- * \since This function is available since SDL 3.1.3.
+ * \since This function is available since SDL 3.2.0.
  *
  * \sa SDL_SaveFile_IO
  * \sa SDL_LoadFile