SDL: Fix multiple occurences of typo "an simple" to "a simple"

From bb3c5b4f3ad134ced909b707d7428bf58b236d63 Mon Sep 17 00:00:00 2001
From: Klayism <[EMAIL REDACTED]>
Date: Tue, 21 Jan 2025 16:46:09 -0500
Subject: [PATCH] Fix multiple occurences of typo "an simple" to "a simple"

---
 examples/audio/01-simple-playback/README.txt                    | 2 +-
 examples/audio/01-simple-playback/simple-playback.c             | 2 +-
 examples/audio/02-simple-playback-callback/README.txt           | 2 +-
 .../02-simple-playback-callback/simple-playback-callback.c      | 2 +-
 examples/audio/03-load-wav/README.txt                           | 2 +-
 examples/audio/03-load-wav/load-wav.c                           | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/examples/audio/01-simple-playback/README.txt b/examples/audio/01-simple-playback/README.txt
index 9b3c07dd0e3e3..20ad0598ad6d7 100644
--- a/examples/audio/01-simple-playback/README.txt
+++ b/examples/audio/01-simple-playback/README.txt
@@ -1,5 +1,5 @@
 If you're running this in a web browser, you need to click the window before you'll hear anything!
 
-This example code creates an simple audio stream for playing sound, and
+This example code creates a simple audio stream for playing sound, and
 generates a sine wave sound effect for it to play as time goes on. This is the
 simplest way to get up and running with procedural sound.
diff --git a/examples/audio/01-simple-playback/simple-playback.c b/examples/audio/01-simple-playback/simple-playback.c
index 35ddf8a84baec..330df800759ef 100644
--- a/examples/audio/01-simple-playback/simple-playback.c
+++ b/examples/audio/01-simple-playback/simple-playback.c
@@ -1,5 +1,5 @@
 /*
- * This example code creates an simple audio stream for playing sound, and
+ * This example code creates a simple audio stream for playing sound, and
  * generates a sine wave sound effect for it to play as time goes on. This
  * is the simplest way to get up and running with procedural sound.
  *
diff --git a/examples/audio/02-simple-playback-callback/README.txt b/examples/audio/02-simple-playback-callback/README.txt
index e719256d8c106..888ae3497c9fb 100644
--- a/examples/audio/02-simple-playback-callback/README.txt
+++ b/examples/audio/02-simple-playback-callback/README.txt
@@ -1,5 +1,5 @@
 If you're running this in a web browser, you need to click the window before you'll hear anything!
 
-This example code creates an simple audio stream for playing sound, and
+This example code creates a simple audio stream for playing sound, and
 generates a sine wave sound effect for it to play as time goes on. Unlike
 the previous example, this uses a callback to generate sound.
diff --git a/examples/audio/02-simple-playback-callback/simple-playback-callback.c b/examples/audio/02-simple-playback-callback/simple-playback-callback.c
index 5a783619f7da5..c011c72710867 100644
--- a/examples/audio/02-simple-playback-callback/simple-playback-callback.c
+++ b/examples/audio/02-simple-playback-callback/simple-playback-callback.c
@@ -1,5 +1,5 @@
 /*
- * This example code creates an simple audio stream for playing sound, and
+ * This example code creates a simple audio stream for playing sound, and
  * generates a sine wave sound effect for it to play as time goes on. Unlike
  * the previous example, this uses a callback to generate sound.
  *
diff --git a/examples/audio/03-load-wav/README.txt b/examples/audio/03-load-wav/README.txt
index 5a6894c765a7b..57eb90ce06dee 100644
--- a/examples/audio/03-load-wav/README.txt
+++ b/examples/audio/03-load-wav/README.txt
@@ -1,5 +1,5 @@
 If you're running this in a web browser, you need to click the window before you'll hear anything!
 
-This example code creates an simple audio stream for playing sound, and
+This example code creates a simple audio stream for playing sound, and
 loads a .wav file that is pushed through the stream in a loop.
 
diff --git a/examples/audio/03-load-wav/load-wav.c b/examples/audio/03-load-wav/load-wav.c
index 7a4adf0cb27e5..966fccb26baab 100644
--- a/examples/audio/03-load-wav/load-wav.c
+++ b/examples/audio/03-load-wav/load-wav.c
@@ -1,5 +1,5 @@
 /*
- * This example code creates an simple audio stream for playing sound, and
+ * This example code creates a simple audio stream for playing sound, and
  * loads a .wav file that is pushed through the stream in a loop.
  *
  * This code is public domain. Feel free to use it for any purpose!