Skip to content

Commit b1781bf

Browse files
committed
p5.soundOut --> p5.prototype.soundOut fixes #134
1 parent 279cbea commit b1781bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/master.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ define(function (require) {
112112
};
113113

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

125125
/**
126126
* a silent connection to the DesinationNode

0 commit comments

Comments
 (0)