--- a/webaudio/specification.html Tue Apr 23 15:29:42 2013 -0400
+++ b/webaudio/specification.html Sat Apr 27 17:44:17 2013 -0400
@@ -1367,14 +1367,14 @@
<pre class="code"><code class="idl-code">
enum <dfn>ChannelCountMode</dfn> {
- “max”,
- “clamped-max”,
- “explicit”
+ "max",
+ "clamped-max",
+ "explicit"
};
enum <dfn>ChannelInterpretation</dfn> {
- “speakers”,
- “discrete”
+ "speakers",
+ "discrete"
};
interface <dfn id="dfn-AudioNode">AudioNode</dfn> : EventTarget {
@@ -4388,18 +4388,18 @@
gain.channelCountMode = "explicit";
gain.channelInterpretation = "speakers";
-// Set “hardware output” to 4-channels for DJ-app with two stereo output busses.
+// Set "hardware output" to 4-channels for DJ-app with two stereo output busses.
context.destination.channelCount = 4;
context.destination.channelCountMode = "explicit";
context.destination.channelInterpretation = "discrete";
-// Set “hardware output” to 8-channels for custom multi-channel speaker array
+// Set "hardware output" to 8-channels for custom multi-channel speaker array
// with custom matrix mixing.
context.destination.channelCount = 8;
context.destination.channelCountMode = "explicit";
context.destination.channelInterpretation = "discrete";
-// Set “hardware output” to 5.1 to play an HTMLAudioElement.
+// Set "hardware output" to 5.1 to play an HTMLAudioElement.
context.destination.channelCount = 6;
context.destination.channelCountMode = "explicit";
context.destination.channelInterpretation = "speakers";