aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornlb <[email protected]>2019-12-25 16:20:04 +0100
committerGitHub <[email protected]>2019-12-25 16:20:04 +0100
commitb7a32c7ab1035863eeb867efeaa4eed80695f2cc (patch)
tree0c19d8655fda3ae8469119c51a661212dc7ca754
parent84c0af17fbfe727ef62582ed6248d971fa36e1e5 (diff)
downloadOrca-b7a32c7ab1035863eeb867efeaa4eed80695f2cc.tar.gz
Orca-b7a32c7ab1035863eeb867efeaa4eed80695f2cc.zip
Rename the B operator from bounce to between
-rw-r--r--desktop/sources/scripts/core/library.js4
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 }