From d769d4eab4425b195a4c48cab576806b64669f71 Mon Sep 17 00:00:00 2001 From: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:52:08 +0530 Subject: [PATCH] Update lib/node_modules/@stdlib/math/base/special/lcmf/README.md Co-authored-by: Gunj Joshi Signed-off-by: Harsh Mathur <104578544+Harsh-Mathur-1503@users.noreply.github.com> --- lib/node_modules/@stdlib/math/base/special/lcmf/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/lcmf/README.md b/lib/node_modules/@stdlib/math/base/special/lcmf/README.md index 30e12d88cfb..b942c15e670 100644 --- a/lib/node_modules/@stdlib/math/base/special/lcmf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/lcmf/README.md @@ -47,7 +47,7 @@ var lcmf = require( '@stdlib/math/base/special/lcmf' ); Computes the [least common multiple][lcm] for two single-precision floating-point numbers `a` and `b`. ```javascript -var v = lcmf( 10.0,12.0 ); +var v = lcmf( 10, 12 ); // returns 60 ```