diff options
author | Devine Lu Linvega <[email protected]> | 2019-12-25 10:33:49 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-25 10:33:49 -0500 |
commit | a17e05a7a6616cddeb02bfb89fedd81df2d258a9 (patch) | |
tree | 0c19d8655fda3ae8469119c51a661212dc7ca754 /desktop | |
parent | 84c0af17fbfe727ef62582ed6248d971fa36e1e5 (diff) | |
parent | b7a32c7ab1035863eeb867efeaa4eed80695f2cc (diff) | |
download | Orca-a17e05a7a6616cddeb02bfb89fedd81df2d258a9.tar.gz Orca-a17e05a7a6616cddeb02bfb89fedd81df2d258a9.zip |
Merge pull request #200 from nlebellier/patch-1
Rename the B operator from bounce to between
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/sources/scripts/core/library.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index 679a21c..4b092d1 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -25,8 +25,8 @@ library.a = function OperatorA (orca, x, y, passive) { library.b = function OperatorL (orca, x, y, passive) { Operator.call(this, orca, x, y, 'b', passive) - this.name = 'bounce' - this.info = 'Outputs difference between inputs' + this.name = 'between' + this.info = 'Outputs the absolute value of the subtraction between the inputs' this.ports.a = { x: -1, y: 0 } this.ports.b = { x: 1, y: 0 } |