Browse Source

Add missing semicolon in misc_sound

Tristan Valcke 8 years ago
parent
commit
3e224e091e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/misc_sound.html

+ 1 - 1
examples/misc_sound.html

@@ -171,7 +171,7 @@
 				var GeneratorControls = function() {
 					   this.frequency = oscillator.frequency.value;
 					   this.wavetype = oscillator.type;
-				}
+				};
       			var gui = new dat.GUI();
 				var soundControls = new SoundControls();
 				var generatorControls = new GeneratorControls();