tone 15.4.0 → 15.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,7 @@ export declare abstract class Effect<Options extends EffectOptions> extends Tone
24
24
  */
25
25
  wet: Signal<"normalRange">;
26
26
  /**
27
- * connect the effectSend to the input of hte effect
27
+ * connect the effectSend to the input of the effect
28
28
  */
29
29
  protected effectSend: Gain;
30
30
  /**
@@ -22,7 +22,7 @@ export class Effect extends ToneAudioNode {
22
22
  */
23
23
  this.wet = this._dryWet.fade;
24
24
  /**
25
- * connect the effectSend to the input of hte effect
25
+ * connect the effectSend to the input of the effect
26
26
  */
27
27
  this.effectSend = new Gain({ context: this.context });
28
28
  /**
@@ -1,2 +1,2 @@
1
- export const version = "15.4.0";
1
+ export const version = "15.4.2";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tone",
3
- "version": "15.4.0",
3
+ "version": "15.4.2",
4
4
  "description": "A Web Audio framework for making interactive music in the browser.",
5
5
  "type": "module",
6
6
  "main": "build/esm/index.js",