Skip to content

Commit 9f3856e

Browse files
committed
semi-colons
1 parent b993b72 commit 9f3856e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/repl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1801,10 +1801,10 @@ function defineDefaultCommands(repl) {
18011801
const stats = fs.statSync(file);
18021802
if (stats && stats.isFile()) {
18031803
_turnOnEditorMode(this);
1804-
this._loading = true
1804+
this._loading = true;
18051805
const data = fs.readFileSync(file, 'utf8');
18061806
this.write(data);
1807-
this._loading = false
1807+
this._loading = false;
18081808
_turnOffEditorMode(this);
18091809
this.write('\n');
18101810
} else {

0 commit comments

Comments
 (0)