SDL: include: Fix markdown in a doxygen comment.

From 2f93fbbb7500dcb62a7885c6bd757f56f2197da3 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Thu, 30 Sep 2021 10:04:09 -0400
Subject: [PATCH] include: Fix markdown in a doxygen comment.

---
 include/SDL_audio.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/SDL_audio.h b/include/SDL_audio.h
index 69b12a315e..07ee1a17f7 100644
--- a/include/SDL_audio.h
+++ b/include/SDL_audio.h
@@ -521,7 +521,7 @@ extern DECLSPEC int SDLCALL SDL_GetAudioDeviceSpec(int index,
  * For example, if you ask for float32 audio format, but the sound card only
  * supports int16, SDL will set the hardware to int16. If you had set
  * SDL_AUDIO_ALLOW_FORMAT_CHANGE, SDL will change the format in the `obtained`
- * structure. If that flag was *not'' set, SDL will prepare to convert your
+ * structure. If that flag was *not* set, SDL will prepare to convert your
  * callback's float32 audio to int16 before feeding it to the hardware and
  * will keep the originally requested format in the `obtained` structure.
  *