Merge pull request #1725 from Pandaismyname1/main

Fixed Drive Letters for Windows Platform
This commit is contained in:
Timothy Baldridge 2021-11-13 06:41:05 -07:00 committed by GitHub
commit 9c5821704b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ public readonly struct AbsolutePath : IPath, IComparable<AbsolutePath>, IEquatab
}
private static readonly HashSet<char>
DriveLetters = new("ABCDEFGJIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
DriveLetters = new("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
private static PathFormat DetectPathType(string path)
{