Fixing some syntax and a typo

This commit is contained in:
Darius Kazemi 2025-10-11 17:50:58 -07:00
parent 0065db8569
commit af53bab259

View file

@ -66,18 +66,16 @@ You can write your own chained function using `register`. Here's the above chain
<MiniRepl <MiniRepl
client:idle client:idle
tune={`const effectChain = register('effectChain', tune={`const effectChain = register('effectChain', (pat) => pat
(pat) => pat
.s("sawtooth") .s("sawtooth")
.cutoff(500) .cutoff(500)
//.delay(0.5) //.delay(0.5)
.room(0.5) .room(0.5)
); );
note("a3 c#4 e4 a4").effectChain() note("a3 c#4 e4 a4").effectChain()`}
`}
/> />
Try adding `.rev()` after `effectChain()` to see further effects added. Try adding `.rev()` after `effectChain()` to hear further effects added.
# Comments # Comments