Skip to content

Commit

Permalink
p5.soundOut --> p5.prototype.soundOut fixes #134
Browse files Browse the repository at this point in the history
  • Loading branch information
therewasaguy committed Sep 29, 2016
1 parent 279cbea commit b1781bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/master.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ define(function (require) {
};

/**
* p5.soundOut is the p5.sound master output. It sends output to
* `p5.soundOut` is the p5.sound master output. It sends output to
* the destination of this window's web audio context. It contains
* Web Audio API nodes including a dyanmicsCompressor (<code>.limiter</code>),
* and Gain Nodes for <code>.input</code> and <code>.output</code>.
*
* @property p5.soundOut
* @property soundOut
* @type {Object}
*/
p5.soundOut = p5sound;
p5.prototype.soundOut = p5.soundOut = p5sound;

/**
* a silent connection to the DesinationNode
Expand Down

0 comments on commit b1781bf

Please sign in to comment.