Skip to content

Commit

Permalink
fix: remove space from error message
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Feb 15, 2020
1 parent 8218964 commit 42f870a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/volume.ts
Expand Up @@ -143,7 +143,7 @@ function formatError(errorCode: string, func = '', path = '', path2 = '') {
case ENOSYS:
return `ENOSYS: function not implemented, ${func}${pathFormatted}`;
default:
return `${errorCode} : error occurred, ${func}${pathFormatted}`;
return `${errorCode}: error occurred, ${func}${pathFormatted}`;
}
}

Expand Down

0 comments on commit 42f870a

Please sign in to comment.