mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-14 04:43:54 +00:00
fixing example
This commit is contained in:
parent
0771798aac
commit
15d5584f97
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ export abstract class ToneAudioNode<Options extends ToneAudioNodeOptions = ToneA
|
|||
* const filter = new Tone.Filter();
|
||||
* const volume = new Tone.Volume(-8);
|
||||
* // connect a node to the filter, volume and then to the master output
|
||||
* osc.chain(filter, volume, Destination);
|
||||
* osc.chain(filter, volume, Tone.Destination);
|
||||
*/
|
||||
chain(...nodes: InputNode[]): this {
|
||||
connectSeries(this, ...nodes);
|
||||
|
|
Loading…
Reference in a new issue