Skip to content

Commit

Permalink
fix vibrato docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbicodes committed Apr 3, 2024
1 parent 5b041fa commit bdb70db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interpreter.js
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,6 @@ addDoc('set/union', '([] [s1] [s1 s2] [s1 s2 & sets])', 'Return a set that is th
addDoc('set/intersection', '([s1] [s1 s2] [s1 s2 & sets])', 'Return a set that is the intersection of the input sets')
addDoc('set/difference', '([s1] [s1 s2] [s1 s2 & sets])', 'Return a set that is the first set without elements of the remaining sets')
addDoc('set/symmetric-difference', '[s1 s2]', "Returns a set that is the symmetric difference of the input sets.")
addDoc('vib', '[notes speed width]', "Takes a sequence of notes and applies sine wave vibrato to only the tails of the notes. Speed and width are multipliers for the frequency and amplitude of the sine wave. Cannot be used inside loops made using loop1.")
addDoc('vib-all', '[notes speed width]', "Takes a sequence of notes and applies sine wave vibrato to them. Speed and width are multipliers for the frequency and amplitude of the sine wave. Cannot be used inside loops made using loop1.")
addDoc('vib', '[notes speed width]', "Takes a sequence of notes and applies sine wave vibrato to only the tails of the notes. Speed and width are multipliers for the frequency and amplitude of the sine wave. Uses loop2 internally, so cannot be used inside loops made using loop2.")
addDoc('vib-all', '[notes speed width]', "Takes a sequence of notes and applies sine wave vibrato to them. Speed and width are multipliers for the frequency and amplitude of the sine wave. Uses loop2 internally, so cannot be used inside loops made using loop2.")

0 comments on commit bdb70db

Please sign in to comment.