Rename commands to full names

This commit is contained in:
2020-04-17 20:52:58 +02:00
parent cde7998c1b
commit faa38111c1
3 changed files with 5 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
function i(instrument: int) { function instrument(instrument: int) {
return { instrument -> instrument }; return { instrument -> instrument };
} }

View File

@@ -1,4 +1,4 @@
function v(value: float) { function velocity(value: float) {
return { velocity -> value }; return { velocity -> value };
} }

View File

@@ -1,12 +1,12 @@
function o(overtones: list<float>) { function overtones(overtones: list<float>) {
return { overtones -> overtones }; return { overtones -> overtones };
} }
function e(envelope: map<string><>) { function envelope(envelope: map<string><>) {
return { envelope -> envelope }; return { envelope -> envelope };
} }
function t(tuning: float) { function tuning(tuning: float) {
return { tuning -> tuning }; return { tuning -> tuning };
} }