From d15f73bdb067254ed8b11a0fddf8b1701011e3a5 Mon Sep 17 00:00:00 2001 From: Takashi Fujita Date: Fri, 5 Feb 2016 05:29:31 +0900 Subject: [PATCH] fix var name on README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf9a1b06..90f9b9b3 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ All instruments are monophonic (one voice) but can be made polyphonic when the c //a 4 voice MonoSynth var polySynth = new Tone.PolySynth(4, Tone.MonoSynth).toMaster(); //play a chord -polySimpleSynth.triggerAttackRelease(["C4", "E4", "G4", "B4"], "2n"); +polySynth.triggerAttackRelease(["C4", "E4", "G4", "B4"], "2n"); ``` [Read more about Instruments.](https://github.com/Tonejs/Tone.js/wiki/Instruments)