Skip to content

Commit 8478937

Browse files
committed
chore: minor clean-up
1 parent 69e1026 commit 8478937

File tree

26 files changed

+27
-29
lines changed

26 files changed

+27
-29
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-heading-style/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ console.log( result );
151151
'line': 4,
152152
'column': 3,
153153
'nodeType': null,
154-
'source': '* ## Boop ##',
154+
'source': '* ## Beep ##',
155155
'endLine': 19,
156156
'endColumn': 3
157157
},

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-heading-style/examples/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ console.log( result );
7070
'line': 4,
7171
'column': 3,
7272
'nodeType': null,
73-
'source': '* ## Boop ##',
7473
'endLine': 19,
7574
'endColumn': 3
7675
},
@@ -81,7 +80,6 @@ console.log( result );
8180
'line': 8,
8281
'column': 3,
8382
'nodeType': null,
84-
'source': '* Boop',
8583
'endLine': 19,
8684
'endColumn': 3
8785
}

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-multiple-toplevel-headings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ console.log( result );
148148
/* =>
149149
[
150150
{
151-
'ruleId': 'jsdoc-no-multiple-toplevel-heading',
151+
'ruleId': 'jsdoc-no-multiple-toplevel-headings',
152152
'severity': 2,
153153
'message': 'Don’t use multiple top level headings (5:1)',
154154
'line': 6,

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-space-aligned-asterisks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ console.log( result );
128128
'severity': 2,
129129
'message': 'JSDoc comments should not have space-aligned asterisks',
130130
'line': 1,
131-
'column':1,
131+
'column': 1,
132132
'nodeType': null,
133133
'endLine': 10,
134-
'endColumn': 4
134+
'endColumn': 4,
135135
'fix': {
136136
'range': [...],
137137
'text': '...'

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-table-indentation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ console.log( result );
147147
{
148148
'ruleId': 'jsdoc-no-table-indentation',
149149
'severity': 2,
150-
'message: 'Do not indent table rows',
150+
'message': 'Do not indent table rows',
151151
'line': 6,
152152
'column': 3,
153153
'nodeType': null,

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-undefined-references/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ console.log( result );
132132
'line': 2,
133133
'column': 8,
134134
'nodeType': null,
135-
'source': '* Beep [boop][boop].',
136135
'endLine': 10,
137136
'endColumn': 3
138137
}

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-no-undefined-references/examples/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ console.log( result );
6161
'line': 2,
6262
'column': 8,
6363
'nodeType': null,
64-
'source': '* Beep [boop][boop].',
6564
'endLine': 10,
6665
'endColumn': 3
6766
}

lib/node_modules/@stdlib/_tools/eslint/rules/no-dynamic-exports/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var rule = require( '@stdlib/_tools/eslint/rules/no-dynamic-exports' );
3838

3939
#### rule
4040

41-
[ESLint rule][eslint-rules] enforcing only statically analyzable values are exported. Statically analyable values include function expressions, variables, and string and number literals. The rule validates both Node.js `module.exports` and ECMAScript 6 default exports.
41+
[ESLint rule][eslint-rules] enforcing only statically analyzable values are exported. Statically analyzable values include function expressions, variables, and string and number literals. The rule validates both Node.js `module.exports` and ECMAScript 6 default exports.
4242

4343
**Bad**:
4444

lib/node_modules/@stdlib/_tools/eslint/utils/find-jsdoc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ code = [
7979
'/**',
8080
'* Squares a number.',
8181
'* ',
82-
'* @params {number} x - input number',
82+
'* @param {number} x - input number',
8383
'* @returns {number} x squared',
8484
'*',
8585
'* @examples',

lib/node_modules/@stdlib/_tools/github/following/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ function clbk( error, results, info ) {
207207
### Usage
208208

209209
```bash
210-
Usage: ghfollowing [options]
210+
Usage: ghfollowing [options]
211211

212212
Options:
213213

0 commit comments

Comments
 (0)