updated docs

This commit is contained in:
Yotam Mann 2014-07-04 13:36:13 -04:00
parent 8473a26bf0
commit 2f027cfd50
2 changed files with 3 additions and 4 deletions

View file

@ -1,13 +1,12 @@
define(["Tone/core/Tone", "Tone/signal/Threshold", "Tone/signal/Negate", "Tone/signal/EqualZero"], function(Tone){
/**
* return the absolute value of an incoming signal
* @class return the absolute value of an incoming signal
*
* @constructor
* @extends {Tone}
* @param {number} value
*/
Tone.Abs = function(value){
Tone.Abs = function(){
Tone.call(this);
/**

View file

@ -1,7 +1,7 @@
define(["Tone/core/Tone", "Tone/signal/Signal"], function(Tone){
/**
* Adds a value to an incoming signal
* @class Adds a value to an incoming signal
*
* @constructor
* @extends {Tone}