Skip to content

Commit 60b847a

Browse files
authored
Merge pull request microsoft#92862 from videlalvaro/issue_92860
fixes microsoft#92860
2 parents a3ccfda + 98ae865 commit 60b847a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/base/node/pfs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export function writeFile(path: string, data: string | Buffer | Uint8Array, opti
292292
function toQueueKey(path: string): string {
293293
let queueKey = path;
294294
if (platform.isWindows || platform.isMacintosh) {
295-
queueKey = queueKey.toLowerCase(); // accomodate for case insensitive file systems
295+
queueKey = queueKey.toLowerCase(); // accommodate for case insensitive file systems
296296
}
297297

298298
return queueKey;

0 commit comments

Comments
 (0)