From 93443f4c5b9cdf9e5bc2053b3e6dc95e417b0b09 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 30 Apr 2026 13:07:10 +0000 Subject: [PATCH] chore: align outlier in `_tools/markdown/to-html` with namespace majority pattern Propagates fix from a2c531cd9 ("chore: align outliers in `_tools/lint` with namespace majority patterns") to a sibling outlier in `_tools/markdown`. Aligns the JSDoc type annotation for the `clbk` callback parameter from `{Function}` to `{Callback}`, matching the pattern used by sibling files `_tools/markdown/inline-svg-equation/lib/main.js` and `_tools/markdown/namespace-toc/lib/async.js`. --- lib/node_modules/@stdlib/_tools/markdown/to-html/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/_tools/markdown/to-html/lib/main.js b/lib/node_modules/@stdlib/_tools/markdown/to-html/lib/main.js index 14961352c4cf..b1f0da5a4a94 100644 --- a/lib/node_modules/@stdlib/_tools/markdown/to-html/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/markdown/to-html/lib/main.js @@ -54,7 +54,7 @@ var hTransform = rehype() * * @param {(string|Buffer)} markdown - markdown to convert * @param {string} [base='/docs/api/develop/'] - base path for internal URLs -* @param {Function} clbk - callback to invoke on completion +* @param {Callback} clbk - callback to invoke on completion * @throws {TypeError} first argument must be either a string or Buffer * @throws {TypeError} last argument must be a function *