@@ -172,7 +172,7 @@ function Presentation( repl, options ) { // eslint-disable-line stdlib/no-redecl
172
172
* @private
173
173
*/
174
174
function onClose ( ) {
175
- debug ( 'REPL environment closed. Performing presentation clean-up tasks... ' ) ;
175
+ debug ( 'REPL environment closed. Performing presentation clean-up tasks.' ) ;
176
176
self . unwatch ( ) ;
177
177
}
178
178
}
@@ -877,12 +877,12 @@ setNonEnumerableReadOnly( Presentation.prototype, 'run', function run( clbk ) {
877
877
self = this ;
878
878
code = this . _slides [ this . _slideCursor ] . code ;
879
879
if ( code && code . length ) {
880
- debug ( 'Forwarding each line of slide code to the REPL readline interface in order to mimic user input... ' ) ;
880
+ debug ( 'Forwarding each line of slide code to the REPL readline interface in order to mimic user input.' ) ;
881
881
len = code . length ;
882
882
i = - 1 ;
883
883
return next ( ) ;
884
884
}
885
- debug ( 'Slide does not contain code to run. Skipping... ' ) ;
885
+ debug ( 'Slide does not contain code to run. Skipping.' ) ;
886
886
887
887
// TODO: replace with polyfill
888
888
process . nextTick ( clbk ) ;
@@ -898,7 +898,7 @@ setNonEnumerableReadOnly( Presentation.prototype, 'run', function run( clbk ) {
898
898
i += 1 ;
899
899
if ( i < len ) {
900
900
if ( code [ i ] ) {
901
- debug ( 'Forwarding line %d... ' , i ) ;
901
+ debug ( 'Forwarding line %d.' , i ) ;
902
902
self . _repl . _rli . write ( code [ i ] + '\n' ) ;
903
903
self . _repl . once ( 'drain' , next ) ;
904
904
} else {
@@ -1043,7 +1043,7 @@ setNonEnumerableReadOnly( Presentation.prototype, 'reload', function reload() {
1043
1043
if ( this . _source === '' ) {
1044
1044
throw new Error ( 'invalid operation. No presentation to reload. Use the `load()` method to load a presentation.' ) ;
1045
1045
}
1046
- debug ( 'Attempting to reload presentation... ' ) ;
1046
+ debug ( 'Attempting to reload presentation.' ) ;
1047
1047
try {
1048
1048
this . load ( this . _source ) ;
1049
1049
} catch ( err ) {
0 commit comments