Skip to content

Commit 4b00022

Browse files
todrobbinsandrewosh
authored andcommitted
grammar fix on mountpoint message
1 parent 10f646e commit 4b00022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fuse/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ class FuseManager extends EventEmitter {
430430

431431
async _infoForPath (path) {
432432
if (!this._rootDrive) throw new Error('Cannot get mountpoint info when a root drive is not mounted.')
433-
if (!path.startsWith(this._rootMnt)) throw new Error(`The mountpoint must be a beneath ${constants.mountpoint}.`)
433+
if (!path.startsWith(this._rootMnt)) throw new Error(`The mountpoint must be beneath ${constants.mountpoint}.`)
434434
const self = this
435435

436436
if (path !== this._rootMnt) {

0 commit comments

Comments
 (0)