From a3905d96c5365c9d6b24be12a44a58b42ae2a870 Mon Sep 17 00:00:00 2001 From: Bernard Gray Date: Mon, 9 Oct 2023 06:59:07 +1100 Subject: [PATCH] rhythm source correction for +| (right, not left) --- docs/patternlib/tutorials/course1.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patternlib/tutorials/course1.mdx b/docs/patternlib/tutorials/course1.mdx index 412f229d4..d305dbba1 100644 --- a/docs/patternlib/tutorials/course1.mdx +++ b/docs/patternlib/tutorials/course1.mdx @@ -589,7 +589,7 @@ d1 $ n "0 1 2 3" # sound "numbers" +| n "4 5" -- adds up to: d1 $ n "4 7" # sound "numbers" --- This is because the rhythm comes from the left, from the "4 5", and +-- This is because the rhythm comes from the right, from the "4 5", and -- so we start from that. The start of 4 matches with 0, and the start -- of 5 matches with 2, and adding them up, we end up with 4+0=4, and -- 5+2 = 7.