Skip to content

Commit 69e1026

Browse files
committed
docs: update links and fix various documentation issues
1 parent 2d710e2 commit 69e1026

File tree

17 files changed

+24
-27
lines changed

17 files changed

+24
-27
lines changed

lib/node_modules/@stdlib/_tools/bib/citation-reference/lib/async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var debug = logger( 'to-reference:async' );
4848
// MAIN //
4949

5050
/**
51-
* Asynchronously return a reference corresponding to a citation identifier.
51+
* Asynchronously returns a reference corresponding to a citation identifier.
5252
*
5353
* @param {string} id - citation identifier
5454
* @param {Options} [options] - function options

lib/node_modules/@stdlib/_tools/bib/citation-reference/lib/sync.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,15 @@ var debug = logger( 'to-reference:sync' );
4747
// MAIN //
4848

4949
/**
50-
* Synchronously return a reference corresponding to a citation identifier.
50+
* Synchronously returns a reference corresponding to a citation identifier.
5151
*
5252
* @param {string} id - citation identifier
5353
* @param {Options} [options] - function options
5454
* @param {string} [options.database] - path to a bibliography database file
5555
* @param {string} [options.csl] - path to a Citation Style Language (CSL) file
56+
* @throws {TypeError} first argument must be a string
57+
* @throws {TypeError} options argument must be an object
58+
* @throws {TypeError} must provide valid options
5659
* @returns {string} reference
5760
*
5861
* @example

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-tabs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/_tools/eslint/rules/jsdoc-no-tabs",
33
"version": "0.0.0",
4-
"description": "ESLint rule forbidding the use of tabs.",
4+
"description": "ESLint rule forbidding the use of tabs in JSDoc comments.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/_tools/github/following/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 <user_data>
46+
* // => <user_data>
4747
* }
4848
*/
4949

lib/node_modules/@stdlib/_tools/pkgs/repl-help/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The function accepts the following `options`:
5151

5252
- **dir**: root directory from which to search for package REPL help files. May be either an absolute path or a path relative to the current working directory. Default: current working directory.
5353
- **pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
54-
- **filename**: REPL help filename. May include a directory prefix (relative to a package's directory). Default: `docs/repl.txt`.
54+
- **filename**: REPL help filename. May include a directory prefix (relative to a package's directory). Default: `docs/repl.txt`.
5555
- **ignore**: list of glob patterns used to exclude matches.
5656

5757
To search from an alternative directory, set the `dir` option.

lib/node_modules/@stdlib/_tools/release/package-json/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The function accepts the following `options`:
5353

5454
- **devDependencies**: development dependencies to be added.
5555

56-
To specify development dependencie to be added to the generated `package.json`, supply an array of dependency names for the `devDependencies` option:
56+
To specify development dependencies to be added to the generated `package.json`, supply an array of dependency names for the `devDependencies` option:
5757

5858
```javascript
5959
var out = prepare( '@stdlib/assert/is-object-array', {
@@ -86,9 +86,9 @@ var out = prepare( '@stdlib/assert/is-object-array', {
8686
var prepare = require( '@stdlib/_tools/release/package-json' );
8787

8888
var out = prepare( '@stdlib/plot/ctor', {
89-
'devDependencies': [
90-
'tape'
91-
]
89+
'devDependencies': [
90+
'tape'
91+
]
9292
});
9393
console.log( out );
9494
```

lib/node_modules/@stdlib/_tools/remark/plugins/remark-img-equations-src-urls/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ console.log( out.contents );
140140

141141
<section class="links">
142142

143-
[remark]: https://github.com/wooorm/remark
143+
[remark]: https://github.com/remarkjs/remark
144144

145145
</section>
146146

lib/node_modules/@stdlib/_tools/remark/plugins/remark-lint-eslint/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var vfile = linter( '```javascript\nvar beep = \'boop\';\n```' );
4646

4747
#### plugin.factory( \[options] )
4848

49-
Returns a configured [remark][remark] plugin for linting JavaScript code blocks.
49+
Returns a configured [remark][remark] plugin for linting JavaScript code blocks.
5050

5151
```javascript
5252
var remark = require( 'remark' );
@@ -244,7 +244,7 @@ console.log( out );
244244

245245
<section class="links">
246246

247-
[remark]: https://github.com/wooorm/remark
247+
[remark]: https://github.com/remarkjs/remark
248248

249249
[eslint]: https://eslint.org/
250250

lib/node_modules/@stdlib/_tools/remark/plugins/remark-namespace-toc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ console.log( out.contents );
8484

8585
<section class="links">
8686

87-
[remark]: https://github.com/wooorm/remark
87+
[remark]: https://github.com/remarkjs/remark
8888

8989
</section>
9090

lib/node_modules/@stdlib/_tools/remark/plugins/remark-run-javascript-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ function done( error ) {
322322

323323
<section class="links">
324324

325-
[remark]: https://github.com/wooorm/remark
325+
[remark]: https://github.com/remarkjs/remark
326326

327327
[node-js]: http://nodejs.org/
328328

0 commit comments

Comments
 (0)