Skip to content

Commit 0f19131

Browse files
committed
style: clean ups
Signed-off-by: Snehil Shah <[email protected]> --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 36619b0 commit 0f19131

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/repl/lib/eager_evaluator.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var ANSI_RESET = ANSI_COLORS[ 'reset' ];
5959
// MAIN //
6060

6161
/**
62-
* Constructor for creating a eager evaluator.
62+
* Constructor for creating an eager evaluator.
6363
*
6464
* @private
6565
* @param {REPL} repl - repl instance
@@ -205,25 +205,25 @@ setNonEnumerableReadOnly( EagerEvaluator.prototype, 'clear', function clear() {
205205
} );
206206

207207
/**
208-
* Disable the eager-evaluator.
208+
* Disable the eager evaluator.
209209
*
210210
* @name disable
211211
* @memberof EagerEvaluator.prototype
212212
* @type {Function}
213-
* @returns {EagerEvaluator} eager-evaluator instance
213+
* @returns {EagerEvaluator} eager evaluator instance
214214
*/
215215
setNonEnumerableReadOnly( EagerEvaluator.prototype, 'disable', function disable() {
216216
this._enabled = false;
217217
return this;
218218
});
219219

220220
/**
221-
* Enables the eager-evaluator.
221+
* Enables the eager evaluator.
222222
*
223223
* @name enable
224224
* @memberof EagerEvaluator.prototype
225225
* @type {Function}
226-
* @returns {EagerEvaluator} eager-evaluator instance
226+
* @returns {EagerEvaluator} eager evaluator instance
227227
*/
228228
setNonEnumerableReadOnly( EagerEvaluator.prototype, 'enable', function enable() {
229229
this._enabled = true;

lib/node_modules/@stdlib/repl/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ var debug = logger( 'repl' );
109109
* @param {boolean} [options.settings.completionPreviews] - boolean indicating whether to enable completion previews for auto-completion
110110
* @param {boolean} [options.settings.autoDisableBracketedPasteOnExit] - boolean indicating whether to automatically disable bracketed-paste upon exiting the REPL
111111
* @param {boolean} [options.settings.syntaxHighlighting] - boolean indicating whether to enable syntax highlighting
112-
* @param {boolean} [options.settings.eagerEvaluation] - boolean indicating whether to enable eagerEvaluation
112+
* @param {boolean} [options.settings.eagerEvaluation] - boolean indicating whether to enable eager evaluation
113113
* @param {string} [options.settings.theme] - initial color theme for syntax highlighting
114114
* @throws {Error} must provide valid options
115115
* @returns {REPL} REPL instance

lib/node_modules/@stdlib/repl/lib/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var SETTINGS = {
5757
'type': 'boolean'
5858
},
5959
'eagerEvaluation': {
60-
'desc': 'Enable eager evaluation',
60+
'desc': 'Enable eager evaluation.',
6161
'type': 'boolean'
6262
},
6363
'theme': {

0 commit comments

Comments
 (0)