Replace Unicode quotes in code samples with ASCII quotes
authorEhsan Akhgari <ehsan@mozilla.com>
Sat, 27 Apr 2013 17:44:17 -0400
changeset 303 f51750067961
parent 302 21c9a7bdbc3a
child 304 37459e013fce
Replace Unicode quotes in code samples with ASCII quotes
webaudio/specification.html
--- 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";