From fc4c70c94f038072403056adf27488f4013a0636 Mon Sep 17 00:00:00 2001 From: Alexandre Gravel-Raymond Date: Sun, 24 Mar 2024 12:25:54 +0100 Subject: [PATCH] Fix codestyle --- packages/core/signal.mjs | 4 ++-- website/src/pages/learn/conditional-modifiers.mdx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/core/signal.mjs b/packages/core/signal.mjs index 546665be..c07a5bec 100644 --- a/packages/core/signal.mjs +++ b/packages/core/signal.mjs @@ -146,7 +146,7 @@ export const _brandBy = (p) => rand.fmap((x) => x < p); /** * A continuous pattern of 0 or 1 (binary random), with a probability for the value being 1 - * + * * @name brandBy * @param {number} probability - a number between 0 and 1 * @example @@ -156,7 +156,7 @@ export const brandBy = (pPat) => reify(pPat).fmap(_brandBy).innerJoin(); /** * A continuous pattern of 0 or 1 (binary random) - * + * * @name brand * @example * s("hh*10").pan(brand) diff --git a/website/src/pages/learn/conditional-modifiers.mdx b/website/src/pages/learn/conditional-modifiers.mdx index 5ef3cf97..c2e22595 100644 --- a/website/src/pages/learn/conditional-modifiers.mdx +++ b/website/src/pages/learn/conditional-modifiers.mdx @@ -104,7 +104,6 @@ import { JsDoc } from '../../docs/JsDoc'; - ## squeeze