From 86fa502e5a5268836566d0aa263dafcd5d911e54 Mon Sep 17 00:00:00 2001 From: Ozzie Gooen Date: Fri, 17 Jun 2022 06:49:55 -0700 Subject: [PATCH] Added scaleMultiply to docs --- packages/website/docs/Api/DistGeneric.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/website/docs/Api/DistGeneric.mdx b/packages/website/docs/Api/DistGeneric.mdx index a6498dd2..84e45eaf 100644 --- a/packages/website/docs/Api/DistGeneric.mdx +++ b/packages/website/docs/Api/DistGeneric.mdx @@ -623,6 +623,12 @@ scalePow(normal(5,2), 2) mapY(normal(5,2), {|y| y ^ 2}) // Not yet available ``` +### scaleMultiply + +``` +scaleMultiply: (distributionLike, number) => distribution +``` + ### scalePow ```