Skip to content

Commit febd0d3

Browse files
authored
Update Readme.md: fix extraneous semicolons
There were semicolons in the first snippet of code that weren't supposed to be there.
1 parent 46c7824 commit febd0d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ fullArchive('myArchive.7z', 'destination', { p: 'myPassword' } /* 7z options/swi
1919
// Equivalent to `on('data', function (files) { // ... });`
2020
.progress(function (files) {
2121
console.log('Some files are extracted: %s', files);
22-
});
22+
})
2323

2424
// When all is done
2525
.then(function () {
2626
console.log('Extracting done!');
27-
});
27+
})
2828

2929
// On error
3030
.catch(function (err) {

0 commit comments

Comments
 (0)