diff --git a/examples/1-indeterminate-basic/index.js b/examples/1-indeterminate-basic/index.js index 2075aed..53ec1a8 100644 --- a/examples/1-indeterminate-basic/index.js +++ b/examples/1-indeterminate-basic/index.js @@ -10,7 +10,7 @@ app.on('ready', function() { progressBar .on('completed', function() { console.info(`completed...`); - progressBar.detail = 'Task completed. Exiting...'; + progressBar.detail = 'Task completed. Closing...'; }) .on('aborted', function() { console.info(`aborted...`); @@ -24,4 +24,4 @@ app.on('ready', function() { setTimeout(function() { progressBar.setCompleted(); }, 3000); -}); \ No newline at end of file +});