diff --git a/packages/core/signal.mjs b/packages/core/signal.mjs index d0db0be9f..4087f3a5d 100644 --- a/packages/core/signal.mjs +++ b/packages/core/signal.mjs @@ -191,13 +191,6 @@ export const chooseInWith = (pat, xs) => { */ export const choose = (...xs) => chooseWith(rand, xs); -/** - * Chooses from the given list of values (or patterns of values), according - * to the pattern that the method is called on. The pattern should be in - * the range 0 .. 1. - * @param {...any} xs - * @returns {Pattern} - */ Pattern.prototype.choose = function (...xs) { return chooseWith(this, xs); };