From 62d34eb0b50c591f6155c5bd74bac0748fac1ced Mon Sep 17 00:00:00 2001 From: Brian Whitman Date: Sat, 24 Aug 2024 16:19:34 -0700 Subject: [PATCH] Update music.md --- docs/music.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/music.md b/docs/music.md index 4ce8fcdd6..885effc86 100644 --- a/docs/music.md +++ b/docs/music.md @@ -187,7 +187,7 @@ def start(): def stop(): global slot tulip.seq_remove_callback(slot) - synth.release_voices() + synth.release() ``` @@ -221,7 +221,7 @@ def start(app): def stop(app): tulip.seq_remove_callback(app.slot) - app.synth.release_voices() + app.synth.release() def run(screen): global app