aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDevine Lu Linvega <[email protected]>2019-05-14 08:17:17 +0900
committerDevine Lu Linvega <[email protected]>2019-05-14 08:17:17 +0900
commit7be521c852dcdc671575d3a3efd84785f4a1d22e (patch)
treee92a2b1c59411609a249636af894be749894a7b7
parent974e32e783057fc4d54dd42fa1ca76b57db45021 (diff)
downloadOrca-7be521c852dcdc671575d3a3efd84785f4a1d22e.tar.gz
Orca-7be521c852dcdc671575d3a3efd84785f4a1d22e.zip
Fixed typo
-rw-r--r--README.md2
-rw-r--r--desktop/core/library/_keys.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5ad76b4..3b01456 100644
--- a/README.md
+++ b/README.md
@@ -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'