remove redundant example for cat, update snapshot

This commit is contained in:
kdiab 2024-09-20 23:38:21 -04:00
parent b75561e3c7
commit 25f762c393
2 changed files with 0 additions and 34 deletions

View file

@ -839,17 +839,6 @@ export class Pattern {
seq(...pats) {
return sequence(this, ...pats);
}
/**
* Appends the given pattern(s) to the next cycle.
* @name cat
* @memberof Pattern
* @synonyms slowcat
* @example
* s("hh*4").cat(
* note("c4(5,8)")
* )
*/
cat(...pats) {
return cat(this, ...pats);
}