Skip to content

Commit fef5a8a

Browse files
Chris Dumezcdumez
andauthored
Fix capitalization of AudioBuffer in webaudio/the-audio-api/processing-model/delay-time-clamping.html (WebKit#25627)
Fix capitalization of AudioBuffer: Audiobuffer -> AudioBuffer. Co-authored-by: Chris Dumez <cdumez@apple.com>
1 parent 58daf4f commit fef5a8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webaudio/the-audio-api/processing-model/delay-time-clamping.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<script>
1010
function doTest() {
1111
let off = new OfflineAudioContext(1, 512, 48000);
12-
let b = new Audiobuffer({sampleRate: off.sampleRate, length: 1});
12+
let b = new AudioBuffer({sampleRate: off.sampleRate, length: 1});
1313
b.getChannelData(0)[0] = 1;
1414
let impulse = new AudioBufferSourceNode(off, {buffer: b});
1515
impulse.start(0);

0 commit comments

Comments
 (0)