From 4a17aadbfe1ac3840fe8b4d55c16e9d291f89ce0 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 27 May 2026 16:21:09 +0000 Subject: [PATCH 1/4] docs: add missing `@returns` tag to main function JSDoc in `_tools/github/create-issue` Added `@returns {void}` to the public `createIssue` function's JSDoc block, where it was missing. 19 of 23 sibling packages in `@stdlib/_tools/github` (83%) already document the void return on the main function; this brings `create-issue` into conformance. --- lib/node_modules/@stdlib/_tools/github/create-issue/lib/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/_tools/github/create-issue/lib/main.js b/lib/node_modules/@stdlib/_tools/github/create-issue/lib/main.js index 60fcdbd2b20f..ccf07b2f113d 100644 --- a/lib/node_modules/@stdlib/_tools/github/create-issue/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/github/create-issue/lib/main.js @@ -58,6 +58,7 @@ var DEFAULT_HTTPS_PORT = 443; * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options * @throws {TypeError} last argument must be a function +* @returns {void} * * @example * var opts = { From 5c0fe310145f4e37944d60ba3edf52bd17f36bc8 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 27 May 2026 16:21:15 +0000 Subject: [PATCH 2/4] docs: add missing `@returns` tag to main function JSDoc in `_tools/github/dependents` Added `@returns {void}` to the public `dependents` function's JSDoc block, where it was missing. 19 of 23 sibling packages in `@stdlib/_tools/github` (83%) already document the void return on the main function; the inner `done` callback in this file is also already annotated `@returns {void}`. --- lib/node_modules/@stdlib/_tools/github/dependents/lib/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/_tools/github/dependents/lib/main.js b/lib/node_modules/@stdlib/_tools/github/dependents/lib/main.js index 09daf89ade2d..bd42dee4d173 100644 --- a/lib/node_modules/@stdlib/_tools/github/dependents/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/github/dependents/lib/main.js @@ -43,6 +43,7 @@ var validate = require( './validate.js' ); * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options * @throws {TypeError} last argument must be a function +* @returns {void} * * @example * dependents( 'stdlib-js/stdlib', onResponse ); From f3dce86b26bade35c82dc7ef11f38327227c592f Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 27 May 2026 16:21:21 +0000 Subject: [PATCH 3/4] docs: add missing `@returns` tag to main function JSDoc in `_tools/github/dependents-count` Added `@returns {void}` to the public `dependentsCount` function's JSDoc block, where it was missing. 19 of 23 sibling packages in `@stdlib/_tools/github` (83%) already document the void return on the main function; the inner `done` callback in this file is also already annotated `@returns {void}`. --- .../@stdlib/_tools/github/dependents-count/lib/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/_tools/github/dependents-count/lib/main.js b/lib/node_modules/@stdlib/_tools/github/dependents-count/lib/main.js index 959195e8a11d..726fcfa367a6 100644 --- a/lib/node_modules/@stdlib/_tools/github/dependents-count/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/github/dependents-count/lib/main.js @@ -42,6 +42,7 @@ var validate = require( './validate.js' ); * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options * @throws {TypeError} last argument must be a function +* @returns {void} * * @example * dependentsCount( 'stdlib-js/stdlib', onResponse ); From df987520eac99ff52effe9784326adf327044f54 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 27 May 2026 16:21:27 +0000 Subject: [PATCH 4/4] docs: add missing `@returns` tag to main function JSDoc in `_tools/github/dispatch-workflow` Added `@returns {void}` to the public `dispatch` function's JSDoc block, where it was missing. 19 of 23 sibling packages in `@stdlib/_tools/github` (83%) already document the void return on the main function; this brings `dispatch-workflow` into conformance. --- .../@stdlib/_tools/github/dispatch-workflow/lib/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/_tools/github/dispatch-workflow/lib/main.js b/lib/node_modules/@stdlib/_tools/github/dispatch-workflow/lib/main.js index 9c54318dbe99..fe6c46a86317 100644 --- a/lib/node_modules/@stdlib/_tools/github/dispatch-workflow/lib/main.js +++ b/lib/node_modules/@stdlib/_tools/github/dispatch-workflow/lib/main.js @@ -56,6 +56,7 @@ var DEFAULT_HTTPS_PORT = 443; * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options * @throws {TypeError} last argument must be a function +* @returns {void} * * @example * var opts = {