Fix the WebIDL enum syntax in the Web Audio spec
authorEhsan Akhgari <ehsan@mozilla.com>
Mon, 11 Mar 2013 17:48:08 -0400
changeset 270 38125358ffc1
parent 269 28d91bd1b594
child 271 c68c2551f6c8
Fix the WebIDL enum syntax in the Web Audio spec
webaudio/specification.html
--- a/webaudio/specification.html	Mon Mar 04 17:01:14 2013 -0800
+++ b/webaudio/specification.html	Mon Mar 11 17:48:08 2013 -0400
@@ -2497,13 +2497,13 @@
   "equalpower",
   "HRTF",
   "soundfield"
-}
+};
 
 enum <dfn>DistanceModelType</dfn> {
   "linear",
   "inverse",
   "exponential"
-}
+};
 
 interface <dfn id="dfn-PannerNode">PannerNode</dfn> : AudioNode {
 
@@ -3222,7 +3222,7 @@
   "peaking",
   "notch",
   "allpass"
-}
+};
 
 interface <dfn id="dfn-BiquadFilterNode">BiquadFilterNode</dfn> : AudioNode {
 
@@ -3553,7 +3553,7 @@
   "sawtooth",
   "triangle",
   "custom"
-}
+};
 
 interface <dfn id="dfn-OscillatorNode">OscillatorNode</dfn> : AudioSourceNode {
 
@@ -5161,7 +5161,7 @@
   "equalpower",
   "HRTF",
   "soundfield"
-}
+};
 </pre>
 </blockquote>
 
@@ -5179,7 +5179,7 @@
   "linear",
   "inverse",
   "exponential"
-}
+};
 </pre>
 </blockquote>
 
@@ -5209,7 +5209,7 @@
   "peaking",
   "notch",
   "allpass"
-}
+};
 </pre>
 </blockquote>
 
@@ -5231,7 +5231,7 @@
   "sawtooth",
   "triangle",
   "custom"
-}
+};
 </pre>
 </blockquote>