diff options
author | neauoire <[email protected]> | 2019-12-25 10:58:50 -0500 |
---|---|---|
committer | neauoire <[email protected]> | 2019-12-25 10:58:50 -0500 |
commit | acfd0c7c0a5e4265b0fc38b29a610aca4994969a (patch) | |
tree | b0118e414c0d06a9766d710429420a197f66a4f8 /desktop | |
parent | a17e05a7a6616cddeb02bfb89fedd81df2d258a9 (diff) | |
download | Orca-acfd0c7c0a5e4265b0fc38b29a610aca4994969a.tar.gz Orca-acfd0c7c0a5e4265b0fc38b29a610aca4994969a.zip |
Reduced operator docs
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/sources/scripts/core/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index 4b092d1..5a1b6f2 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -26,7 +26,7 @@ library.b = function OperatorL (orca, x, y, passive) { Operator.call(this, orca, x, y, 'b', passive) this.name = 'between' - this.info = 'Outputs the absolute value of the subtraction between the inputs' + this.info = 'Outputs subtraction of inputs' this.ports.a = { x: -1, y: 0 } this.ports.b = { x: 1, y: 0 } |