From 7006d4638281437ca70a78b0d17f22cd3cac8278 Mon Sep 17 00:00:00 2001 From: Jeremy Pearson Date: Tue, 19 Jul 2022 19:39:23 +1000 Subject: [PATCH] Fix "repository of wavetables" text's broken link --- files/en-us/web/api/web_audio_api/advanced_techniques/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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