From e80b6f41cf1fada601ee967df96d84182c007d94 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Thu, 9 Nov 2023 09:14:50 +0000 Subject: [PATCH] Auto-generated commit --- base/tools/evalpoly-compile/README.md | 3 ++- base/tools/evalrational-compile/README.md | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base/tools/evalpoly-compile/README.md b/base/tools/evalpoly-compile/README.md index 27ffea0fd..d2e6baa38 100644 --- a/base/tools/evalpoly-compile/README.md +++ b/base/tools/evalpoly-compile/README.md @@ -47,6 +47,8 @@ var str = compile( [ 3.0, 2.0, 1.0 ] ); In the example above, the output `string` would correspond to the following module: + + ```javascript 'use strict'; @@ -61,7 +63,6 @@ In the example above, the output `string` would correspond to the following modu * * [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method * -* * @private * @param {number} x - value at which to evaluate the polynomial * @returns {number} evaluated polynomial diff --git a/base/tools/evalrational-compile/README.md b/base/tools/evalrational-compile/README.md index ddad44c08..bac477150 100644 --- a/base/tools/evalrational-compile/README.md +++ b/base/tools/evalrational-compile/README.md @@ -67,7 +67,6 @@ In the example above, the output `string` would correspond to the following modu * * [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method * -* * @private * @param {number} x - value at which to evaluate the rational function * @returns {number} evaluated rational function