diff options
author | Rain Korshak <[email protected]> | 2023-11-24 22:22:40 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-24 22:22:40 +0100 |
commit | 491c66d116a937e92804f29a7982a51b43f2cf44 (patch) | |
tree | c3a6cff88902439b22d8a5b43e5181e8149eeb72 /desktop/sources/scripts/core/library.js | |
parent | 53a9b9ed9ea9a91c2c944424bbc6ee1158686f99 (diff) | |
download | Orca-491c66d116a937e92804f29a7982a51b43f2cf44.tar.gz Orca-491c66d116a937e92804f29a7982a51b43f2cf44.zip |
Fix a lil' typo
OperatorL -> OperatorB
Diffstat (limited to 'desktop/sources/scripts/core/library.js')
-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 6f71736..b489f8b 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -22,7 +22,7 @@ library.a = function OperatorA (orca, x, y, passive) { } } -library.b = function OperatorL (orca, x, y, passive) { +library.b = function OperatorB (orca, x, y, passive) { Operator.call(this, orca, x, y, 'b', passive) this.name = 'subtract' |