From 7285a2eed0aff0d51946126ead1e5de500b0cbc0 Mon Sep 17 00:00:00 2001 From: rtoy Date: Thu, 16 May 2019 08:13:45 -0700 Subject: [PATCH] Address #1857: Fix typos thru DelayNode (#1883) * Fix typos * Remove a duplicate sentence. --- index.bs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/index.bs b/index.bs index fd771e46b..556a7ebf5 100644 --- a/index.bs +++ b/index.bs @@ -5960,7 +5960,7 @@ Attributes : type :: The type of this {{BiquadFilterNode}}. Its - default value is "lowpass". The exact meaning of the other + default value is "{{BiquadFilterType/lowpass}}". The exact meaning of the other parameters depend on the value of the {{BiquadFilterNode/type}} attribute. @@ -5982,8 +5982,8 @@ Methods processing block.
-			frequencyHz: This parameter specifies an array of frequencies at which the response values will be calculated.
-			magResponse: This parameter specifies an output array receiving the linear magnitude response values. If a value in the frequencyHz parameter is not within [0; sampleRate/2], where sampleRate is the value of the {{BaseAudioContext/sampleRate}} property of the {{AudioContext}}, the corresponding value at the same index of the magResponse array MUST be NaN.
+			frequencyHz: This parameter specifies an array of frequencies, in Hz, at which the response values will be calculated.
+			magResponse: This parameter specifies an output array receiving the linear magnitude response values. If a value in the frequencyHz parameter is not within [0, sampleRate/2], where sampleRate is the value of the {{BaseAudioContext/sampleRate}} property of the {{AudioContext}}, the corresponding value at the same index of the magResponse array MUST be NaN.
 			phaseResponse: This parameter specifies an output array receiving the phase response values in radians. If a value in the frequencyHz parameter is not within [0; sampleRate/2], where sampleRate is the value of the {{BaseAudioContext/sampleRate}} property of the {{AudioContext}}, the corresponding value at the same index of the phaseResponse array MUST be NaN.
 		
@@ -6591,9 +6591,6 @@ There are channelCount constraints and channelCountMode constraints for this node. These constraints ensure that the input to the node is either mono or stereo. -{{ConvolverNode}}s are created with an internal flag buffer -set, initially set to false. -
 [Exposed=Window,
  Constructor (BaseAudioContext context, optional ConvolverOptions options)]