Fixed access to merged description in factories.mdx

This commit is contained in:
Khalid 2024-09-26 17:58:59 -04:00
parent 2c16a37a68
commit e9e7e02547
2 changed files with 0 additions and 16 deletions

View File

@ -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()

View File

@ -25,26 +25,14 @@ These are the equivalents used by the Mini Notation:
<JsDoc client:idle name="cat" h={0} />
You can also use cat as a chained function like this:
<JsDoc client:idle name="Pattern.cat" h={0} hideDescription />
## seq
<JsDoc client:idle name="seq" h={0} />
Or as a chained function:
<JsDoc client:idle name="Pattern.seq" h={0} hideDescription />
## stack
<JsDoc client:idle name="stack" h={0} />
As a chained function:
<JsDoc client:idle name="Pattern.stack" h={0} hideDescription />
## s_cat
<JsDoc client:idle name="s_cat" h={0} />