Skip to content

Commit fe16749

Browse files
committed
lib: fix output message when repl is used with pm
PR-URL: #48438 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent e2d579e commit fe16749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/repl/history.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function setupHistory(repl, historyPath, ready) {
5555
}
5656

5757
if (permission.isEnabled() && permission.has('fs.write', historyPath) === false) {
58-
_writeToOutput(repl, '\nAccess to FileSystemOut is restricted.\n' +
58+
_writeToOutput(repl, '\nAccess to FileSystemWrite is restricted.\n' +
5959
'REPL session history will not be persisted.\n');
6060
return ready(null, repl);
6161
}

0 commit comments

Comments
 (0)