From 1234b7c04d942b16a3341eb385d7428ee5a34f99 Mon Sep 17 00:00:00 2001 From: matt-savvy Date: Sun, 25 Apr 2021 11:28:10 -0400 Subject: [PATCH] Fix example for Part The first example for Part doesn't play. ## Changes - adds start(0) to example code --- Tone/event/Part.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tone/event/Part.ts b/Tone/event/Part.ts index 20d4d085..0033fe0e 100644 --- a/Tone/event/Part.ts +++ b/Tone/event/Part.ts @@ -27,7 +27,7 @@ interface PartOptions extends Omit>, "value" * // the notes given as the second element in the array * // will be passed in as the second argument * synth.triggerAttackRelease(note, "8n", time); - * }), [[0, "C2"], ["0:2", "C3"], ["0:3:2", "G2"]]); + * }), [[0, "C2"], ["0:2", "C3"], ["0:3:2", "G2"]]).start(0); * Tone.Transport.start(); * @example * const synth = new Tone.Synth().toDestination();