Skip to content

Commit 50003a4

Browse files
committed
docs: fix various documentation issues
1 parent f925c9c commit 50003a4

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-list-item-indent/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# List Item Indent
2222

23-
> [ESLint rule][eslint-rules] to spacing between a list item’s bullet and its content to violate a given style in JSDoc descriptions.
23+
> [ESLint rule][eslint-rules] to enforce spacing between a list item’s bullet and its content to match a given style in JSDoc descriptions.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var rule = require( '@stdlib/_tools/eslint/rules/jsdoc-list-item-indent' );
3838

3939
#### rule
4040

41-
[ESLint rule][eslint-rules] to spacing between a list item’s bullet and its content to violate a given style in JSDoc descriptions.
41+
[ESLint rule][eslint-rules] to enforce spacing between a list item’s bullet and its content to match a given style in JSDoc descriptions.
4242

4343
**Bad**:
4444

lib/node_modules/@stdlib/_tools/github/create-issue/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ var DEFAULT_HTTPS_PORT = 443;
4444
* @param {string} title - issue title
4545
* @param {Options} options - function options
4646
* @param {string} options.token - GitHub access token
47-
* @param {string} [opts.protocol='https'] - request protocol
48-
* @param {string} [opts.hostname='api.github.com'] - endpoint hostname
49-
* @param {NonNegativeInteger} [opts.port] - endpoint port
47+
* @param {string} [options.protocol='https'] - request protocol
48+
* @param {string} [options.hostname='api.github.com'] - endpoint hostname
49+
* @param {NonNegativeInteger} [options.port] - endpoint port
5050
* @param {string} [options.useragent] - user agent string
5151
* @param {string} [options.body=""] - issue content
5252
* @param {StringArray} [options.assignees] - usernames of assigned users

lib/node_modules/@stdlib/_tools/github/create-repo/lib/main.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ var factory = require( './factory.js' );
3939
* @param {string} [opts.license] - LICENSE template
4040
* @param {boolean} [opts.private=false] - boolean indicating whether a repository should be private
4141
* @param {boolean} [opts.issues=true] - boolean indicating whether issues should be enabled
42-
* @param {boolean} [options.projects=true] - boolean indicating whether project boards should be enabled
42+
* @param {boolean} [opts.projects=true] - boolean indicating whether project boards should be enabled
4343
* @param {boolean} [opts.wiki=true] - boolean indicating whether a repository should have a wiki
4444
* @param {boolean} [opts.downloads=true] - boolean indicating whether downloads should be enabled
4545
* @param {boolean} [opts.init=false] - boolean indicating whether to initialize the repository with an empty README
46-
* @param {boolean} [options.allowSquashMerge=true] - boolean indicating whether to allow squash-merging
47-
* @param {boolean} [options.allowMergeCommit=true] - boolean indicating whether to allow merging pull requests with a merge commit
48-
* @param {boolean} [options.allowRebaseMerge=true] - boolean indicating whether to allow rebase-merging pull requests
46+
* @param {boolean} [opts.allowSquashMerge=true] - boolean indicating whether to allow squash-merging
47+
* @param {boolean} [opts.allowMergeCommit=true] - boolean indicating whether to allow merging pull requests with a merge commit
48+
* @param {boolean} [opts.allowRebaseMerge=true] - boolean indicating whether to allow rebase-merging pull requests
4949
* @param {Function} clbk - callback to invoke upon query completion
5050
* @returns {void}
5151
*/

lib/node_modules/@stdlib/_tools/github/dispatch-workflow/lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ var DEFAULT_HTTPS_PORT = 443;
4444
* @param {string} id - workflow id or workflow file name
4545
* @param {Options} options - function options
4646
* @param {string} options.token - GitHub access token
47-
* @param {string} [opts.protocol='https'] - request protocol
48-
* @param {string} [opts.hostname='api.github.com'] - endpoint hostname
49-
* @param {NonNegativeInteger} [opts.port] - endpoint port
47+
* @param {string} [options.protocol='https'] - request protocol
48+
* @param {string} [options.hostname='api.github.com'] - endpoint hostname
49+
* @param {NonNegativeInteger} [options.port] - endpoint port
5050
* @param {string} [options.useragent] - user agent string
5151
* @param {string} [options.ref='main'] - git reference for the workflow (branch or tag name)
5252
* @param {Object} [options.inputs] - input key-value pairs overriding the defaults specified in the workflow file

lib/node_modules/@stdlib/_tools/github/starred/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* throw new Error( error.message );
4444
* }
4545
* console.log( JSON.stringify( results ) );
46-
* // returns <repo_data>
46+
* // => <repo_data>
4747
* }
4848
*/
4949

lib/node_modules/@stdlib/_tools/github/subscriptions/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* throw new Error( error.message );
4444
* }
4545
* console.log( JSON.stringify( results ) );
46-
* // returns <repo_data>
46+
* // => <repo_data>
4747
* }
4848
*/
4949

lib/node_modules/@stdlib/_tools/pkgs/includes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ The function accepts the same `options` as `findIncludes()` above.
135135

136136
## Notes
137137

138-
- The implementation resolves package `include` directories by checking for a `directories.include` field in a package's `package.json` file.
138+
- The implementation resolves package `include` directories by checking for a `directories.include` field in a package's `package.json` file.
139139
- **No** attempt is made to ensure that a package actually has the indicated `include` directory.
140140

141141
</section>

lib/node_modules/@stdlib/_tools/pkgs/installed/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var pkgs = require( '@stdlib/_tools/pkgs/installed' );
3838

3939
#### pkgs( \[options], clbk )
4040

41-
Generates a list of installed package dependencies.
41+
Generates a list of installed package dependencies.
4242

4343
```javascript
4444
pkgs( onPkgs );

0 commit comments

Comments
 (0)