Skip to content

Commit

Permalink
minor typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
IDCs committed Oct 8, 2024
1 parent 00a99d3 commit 8aedc95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,15 @@ function unknownErrorRetry(filePath: string, err: Error, stackErr: Error): Promi
message:
`The operating system has reported an error without details when accessing "${filePath}" `
+ 'This is usually due the user\'s environment and not a bug in Vortex.\n'
+ 'Please diagonse your environment and then retry',
+ 'Please diagnose your environment and then retry',
type: 'warning',
noLink: true,
};

if (![255, 362, 383, 388, 390, 395, 396, 404].includes(err['nativeCode'])) {
options.detail = 'Possible error causes:\n'
+ `1. "${filePath}" is a removable, possibly network drive which has been disconnected.\n`
+ '2. An External application has interferred with file operations '
+ '2. An External application has interfered with file operations '
+ '(Anti-virus, Disk Management Utility, Virus)\n';
}

Expand Down

0 comments on commit 8aedc95

Please sign in to comment.