From 25082eb396d96a829ecf356252766c67ab2c4238 Mon Sep 17 00:00:00 2001 From: David Date: Sat, 24 Apr 2021 21:51:03 -0700 Subject: [PATCH] fixed triggerAttack doc typos --- Tone/instrument/Instrument.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tone/instrument/Instrument.ts b/Tone/instrument/Instrument.ts index a7e20f1a..f7916ce6 100644 --- a/Tone/instrument/Instrument.ts +++ b/Tone/instrument/Instrument.ts @@ -153,8 +153,8 @@ export abstract class Instrument extends Tone /** * Start the instrument's note. * @param note the note to trigger - * @param time the time to trigger the ntoe - * @param velocity the velocity to trigger the note (betwee 0-1) + * @param time the time to trigger the note + * @param velocity the velocity to trigger the note (between 0-1) */ abstract triggerAttack(note: Frequency, time?: Time, velocity?: NormalRange): this; private _original_triggerAttack = this.triggerAttack;