diff --git a/index.html b/index.html index 043f613f1..9a92f3a39 100644 --- a/index.html +++ b/index.html @@ -3836,7 +3836,7 @@

- AudioParam setValueCurveAtTime(Float32Array values, double + AudioParam setValueCurveAtTime(sequence<float> values, double startTime, double duration)
@@ -3847,21 +3847,23 @@

- Float32Array values + sequence<float> values

- A Float32Array representing a parameter value curve. These - values will apply starting at the given time and lasting for - the given duration. When this method is called, an internal - copy of the curve is created for automation purposes. - Subsequent modifications of the contents of the passed-in - array therefore have no effect on the AudioParam. + A sequence of float values representing a parameter value + curve. These values will apply starting at the given time and + lasting for the given duration. When this method is called, + an internal copy of the curve is created for automation + purposes. Subsequent modifications of the contents of the + passed-in array therefore have no effect on the + AudioParam.

- An InvalidStateError MUST be thrown if this - attribute is with a Float32Array that has a length less than - 2. + An InvalidStateError + MUST be thrown if this attribute is a + sequence<float> object that has a length + less than 2.