소스 검색

Add missing semicolon in misc_sound

Tristan Valcke 8 년 전
부모
커밋
3e224e091e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();