From d5e67fe13fad29f4a87e5343dcc6bb15032b4fb2 Mon Sep 17 00:00:00 2001 From: eefano <77832+eefano@users.noreply.github.com> Date: Sun, 18 Feb 2024 19:01:05 +0100 Subject: [PATCH] Update signal.mjs typo --- packages/core/signal.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/signal.mjs b/packages/core/signal.mjs index e468b0d1..c645133d 100644 --- a/packages/core/signal.mjs +++ b/packages/core/signal.mjs @@ -253,7 +253,7 @@ export const pickRestart = register('pickRestart', function (lookup, pat) { return _pick(lookup, pat, false).trigzeroJoin(); }); -/** * The same as `pickr`, but if you pick a number greater than the size of the list, +/** * The same as `pickRestart`, but if you pick a number greater than the size of the list, * it wraps around, rather than sticking at the maximum value. * @param {Pattern} pat * @param {*} xs @@ -272,7 +272,7 @@ export const pickReset = register('pickReset', function (lookup, pat) { return _pick(lookup, pat, false).trigJoin(); }); -/** * The same as `pickr`, but if you pick a number greater than the size of the list, +/** * The same as `pickReset`, but if you pick a number greater than the size of the list, * it wraps around, rather than sticking at the maximum value. * @param {Pattern} pat * @param {*} xs