From 1b550bd662aed23da484c0f5a06461a859a7a0b1 Mon Sep 17 00:00:00 2001 From: Renzo Torr- <56176668+geikha@users.noreply.github.com> Date: Fri, 19 Apr 2024 18:10:49 -0300 Subject: [PATCH] solve `n` warning by renaming to `k` --- src/Sound/Tidal/Boot.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sound/Tidal/Boot.hs b/src/Sound/Tidal/Boot.hs index 9ccdc0fa..2e6d2d17 100644 --- a/src/Sound/Tidal/Boot.hs +++ b/src/Sound/Tidal/Boot.hs @@ -143,7 +143,7 @@ p = streamReplace tidal -- | Silences a specific stream, regardless of ControlPattern input. Useful for rapid muting of streams _p :: Tidally => ID -> ControlPattern -> IO () -_p n _ = streamReplace tidal n silence +_p k _ = streamReplace tidal k silence -- | Silences a specific stream, regardless of ControlPattern input. Useful for rapid muting of streams p_ :: Tidally => ID -> ControlPattern -> IO ()