throw out nunjucks

This commit is contained in:
Felix Roos 2022-12-19 20:48:57 +01:00
parent bf373d894d
commit 0a9604d10e
7 changed files with 268 additions and 205 deletions

View file

@ -1147,7 +1147,7 @@ export function slowcatPrime(...pats) {
/** Concatenation: as with {@link slowcat}, but squashes a cycle from each pattern into one cycle
*
* Synonyms: {@link seq}, {@link sequence}
* Synonyms: {@link Pattern.seq}, {@link Pattern.sequence}
*
* @param {...any} items - The items to concatenate
* @return {Pattern}
@ -1172,7 +1172,7 @@ export function cat(...pats) {
return slowcat(...pats);
}
/** Like {@link seq}, but each step has a length, relative to the whole.
/** Like {@link Pattern.seq}, but each step has a length, relative to the whole.
* @return {Pattern}
* @example
* timeCat([3,e3],[1, g3]).note() // "e3@3 g3".note()