Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyruppel authored Jan 4, 2024
1 parent 13a5daf commit 30725c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const PluginParameters: PluginParameters = [
function HandleMIDI(e: NoteOn | NoteOff) {
e.send()

if (e instanceof NodeOn) {
if (e instanceof NoteOn) {
const echo = new NoteOn()
echo.sendAfterMilliseconds(GetParameter("delay"))
}
Expand All @@ -30,7 +30,7 @@ function HandleMIDI(e: NoteOn | NoteOff) {

### install

Create a `tsconfig.json` withe following compiler options:
Create a `tsconfig.json` with the following compiler options:

```json
{
Expand Down

0 comments on commit 30725c9

Please sign in to comment.