From e9e7e0254731db81d71667ec7bd30de9a0c41837 Mon Sep 17 00:00:00 2001 From: Khalid Date: Thu, 26 Sep 2024 17:58:59 -0400 Subject: [PATCH] Fixed access to merged description in factories.mdx --- packages/core/pattern.mjs | 4 ---- website/src/pages/learn/factories.mdx | 12 ------------ 2 files changed, 16 deletions(-) diff --git a/packages/core/pattern.mjs b/packages/core/pattern.mjs index 6a33b1339..fec268042 100644 --- a/packages/core/pattern.mjs +++ b/packages/core/pattern.mjs @@ -1245,7 +1245,6 @@ export function reify(thing) { /** The given items are played at the same time at the same length. * - * @name stack * @return {Pattern} * @synonyms polyrhythm, pr * @example @@ -1378,7 +1377,6 @@ export function slowcatPrime(...pats) { /** The given items are con**cat**enated, where each one takes one cycle. * - * @name cat * @param {...any} items - The items to concatenate * @synonyms slowcat * @return {Pattern} @@ -1461,8 +1459,6 @@ export function sequence(...pats) { } /** Like **cat**, but the items are crammed into one cycle. - * @name seq - * @memberof Pattern * @synonyms sequence, fastcat * @example * seq("e5", "b4", ["d5", "c5"]).note() diff --git a/website/src/pages/learn/factories.mdx b/website/src/pages/learn/factories.mdx index a823bfedd..6a2e165b2 100644 --- a/website/src/pages/learn/factories.mdx +++ b/website/src/pages/learn/factories.mdx @@ -25,26 +25,14 @@ These are the equivalents used by the Mini Notation: -You can also use cat as a chained function like this: - - - ## seq -Or as a chained function: - - - ## stack -As a chained function: - - - ## s_cat