From efd2023a72b2ed2444beaaba989ebc02cd13cee7 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 27 Aug 2023 16:24:38 -0400 Subject: [PATCH] audio: Fixed documentation. --- include/SDL3/SDL_audio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_audio.h b/include/SDL3/SDL_audio.h index a22cb7846a..d9f35abcb1 100644 --- a/include/SDL3/SDL_audio.h +++ b/include/SDL3/SDL_audio.h @@ -1064,7 +1064,7 @@ extern DECLSPEC void SDLCALL SDL_DestroyAudioStream(SDL_AudioStream *stream); * * \param devid an audio device to open, or SDL_AUDIO_DEVICE_DEFAULT_OUTPUT * or SDL_AUDIO_DEVICE_DEFAULT_CAPTURE. - * \param spec the audio stream's input format. Required. + * \param spec the audio stream's data format. Required. * \param callback A callback where the app will provide new data for playback, * or receive new data for capture. Can be NULL, in which case * the app will need to call SDL_PutAudioStreamData or