From c77675c492c194bc2db8020c5c6ba5824969d0b6 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sat, 29 Nov 2025 18:01:27 +0000 Subject: [PATCH] add another synonym --- packages/core/pattern.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/pattern.mjs b/packages/core/pattern.mjs index 8019a3eab..11304060b 100644 --- a/packages/core/pattern.mjs +++ b/packages/core/pattern.mjs @@ -2383,7 +2383,7 @@ export const jux = register('jux', function (func, pat) { /** * Like jux, but flips the ears each cycle. * @name juxFlip - * @synonyms flux + * @synonyms juxflip, flux * @example * s("bd lt [~ ht] mt cp ~ bd hh").juxFlip(rev) * @example @@ -2391,8 +2391,8 @@ export const jux = register('jux', function (func, pat) { * @example * s("bd lt [~ ht] mt cp ~ bd hh").juxFlip(iter(4)) */ -export const { juxFlip, flux } = register(['juxFlip', 'flux'], function (func, pat) { - return pat._jux(1, func, pat); +export const { juxFlip, flux } = register(['juxFlip', 'juxflip', 'flux'], function (func, pat) { + return pat._juxFlipBy(1, func, pat); }); /**