diff --git a/files/en-us/web/api/web_audio_api/advanced_techniques/index.md b/files/en-us/web/api/web_audio_api/advanced_techniques/index.md index 1136eb36df7b83b..1600fd3a110ac8d 100644 --- a/files/en-us/web/api/web_audio_api/advanced_techniques/index.md +++ b/files/en-us/web/api/web_audio_api/advanced_techniques/index.md @@ -99,7 +99,7 @@ First of all, we'll create our periodic wave. To do so, We need to pass real and const wave = audioCtx.createPeriodicWave(wavetable.real, wavetable.imag); ``` -> **Note:** In our example the wavetable is held in a separate JavaScript file (`wavetable.js`), because there are _so_ many values. It is taken from a [repository of wavetables](https://github.com/GoogleChromeLabs/web-audio-samples/tree/main/archive/demos/wave-tables), which can be found in the [Web Audio API examples from Google Chrome Labs](https://github.com/GoogleChromeLabs/web-audio-samples/). +> **Note:** In our example the wavetable is held in a separate JavaScript file (`wavetable.js`), because there are _so_ many values. It is taken from a [repository of wavetables](https://github.com/GoogleChromeLabs/web-audio-samples/tree/main/src/demos/wavetable-synth/wave-tables), which can be found in the [Web Audio API examples from Google Chrome Labs](https://github.com/GoogleChromeLabs/web-audio-samples/). ### The Oscillator