diff --git a/lib/node_modules/@stdlib/repl/lib/eager_evaluator.js b/lib/node_modules/@stdlib/repl/lib/eager_evaluator.js index 9b585ad24c2..913a2e39023 100644 --- a/lib/node_modules/@stdlib/repl/lib/eager_evaluator.js +++ b/lib/node_modules/@stdlib/repl/lib/eager_evaluator.js @@ -258,16 +258,16 @@ setNonEnumerableReadOnly( EagerEvaluator.prototype, 'onKeypress', function onKey code = cmd.join( '\n' ); debug( 'Eagerly evaluating: %s', code ); if ( !this._isSideEffectFree( code ) ) { - debug( 'Code is not side-effect free, exiting eager-evaluation.' ); + debug( 'Code is not side-effect free, exiting eager-evaluation...' ); return; } - debug( 'try to process command' ); + debug( 'Trying to process command...' ); tmp = processCommand( code ); if ( tmp instanceof Error ) { debug( 'Error encountered when processing command: %s', tmp.message ); return; } - debug( 'Trying to compile command' ); + debug( 'Trying to compile command...' ); executable = compileCommand( tmp ); if ( executable instanceof Error ) { debug( 'Error encountered when compiling command: %s', executable.message );