diff options
author | Devine Lu Linvega <[email protected]> | 2019-05-14 08:17:17 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-05-14 08:17:17 +0900 |
commit | 7be521c852dcdc671575d3a3efd84785f4a1d22e (patch) | |
tree | e92a2b1c59411609a249636af894be749894a7b7 | |
parent | 974e32e783057fc4d54dd42fa1ca76b57db45021 (diff) | |
download | Orca-7be521c852dcdc671575d3a3efd84785f4a1d22e.tar.gz Orca-7be521c852dcdc671575d3a3efd84785f4a1d22e.zip |
Fixed typo
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | desktop/core/library/_keys.js | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -65,7 +65,7 @@ npm start #### Receive -- `&` **keys**: Receives a MIDI note. +- `&` **keys**: Receives MIDI note. ## MIDI diff --git a/desktop/core/library/_keys.js b/desktop/core/library/_keys.js index 3fc7818..add4162 100644 --- a/desktop/core/library/_keys.js +++ b/desktop/core/library/_keys.js @@ -5,7 +5,7 @@ import Operator from '../operator.js' const OCTAVE = ['C', 'c', 'D', 'd', 'E', 'F', 'f', 'G', 'g', 'A', 'a', 'B'] export default function OperatorKeys (orca, x, y, passive) { - Operator.call(this, orca, x, y, ':', true) + Operator.call(this, orca, x, y, '&', true) this.name = 'mono' this.info = 'Receive MIDI note' |