Skip to content

Commit 38a8719

Browse files
committed
Fix typos
1 parent 0aac238 commit 38a8719

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/_tools/repl-txt/rules/code-semicolons/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Lint rule to enforce that semicolons are omitted if output is not surpressed.
22+
* Lint rule to enforce that semicolons are omitted if output is not suppressed.
2323
*
2424
* @module @stdlib/_tools/repl-txt/rules/code-semicolons
2525
*

lib/node_modules/@stdlib/_tools/repl-txt/rules/code-semicolons/lib/main.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ var endsWith = require( '@stdlib/string/ends-with' );
2626
// MAIN //
2727

2828
/**
29-
* Rule for enforcing that semicolons are omitted if output is not surpressed.
29+
* Rule for enforcing that semicolons are omitted if output is not suppressed.
3030
*
3131
* @param {Context} context - lint context
3232
* @returns {Object} validators
3333
*/
3434
function main( context ) {
3535
/**
36-
* Checks examples section for whether semicolons are always omitted if output is not surpressed.
36+
* Checks examples section for whether semicolons are always omitted if output is not suppressed.
3737
*
3838
* @private
3939
* @param {Object} section - examples section
@@ -47,7 +47,7 @@ function main( context ) {
4747
for ( i = 0; i < examples.length; i++ ) {
4848
current = examples[ i ];
4949
if ( endsWith( current.code, ';' ) && current.output ) {
50-
context.report( 'Omit semicolons if output shall not be surpressed', section );
50+
context.report( 'Omit semicolons if output shall not be suppressed', section );
5151
}
5252
}
5353
}

lib/node_modules/@stdlib/_tools/repl-txt/rules/code-semicolons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/_tools/repl-txt/rules/code-semicolons",
33
"version": "0.0.0",
4-
"description": "Lint rule to enforce that semicolons are omitted if output is not surpressed.",
4+
"description": "Lint rule to enforce that semicolons are omitted if output is not suppressed.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/_tools/repl-txt/validate/lib/linter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function getWarnings() {
129129
// MAIN //
130130

131131
/**
132-
* Creater a linter instance.
132+
* Creates a linter instance.
133133
*
134134
* @private
135135
*

0 commit comments

Comments
 (0)