diff --git a/examples/audio/01-simple-playback/README.txt b/examples/audio/01-simple-playback/README.txt index 9b3c07dd0..20ad0598a 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 35ddf8a84..330df8007 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 e719256d8..888ae3497 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 5a783619f..c011c7271 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 5a6894c76..57eb90ce0 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 7a4adf0cb..966fccb26 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!