1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

[VFS][NFC] Fix typo in comment

This commit is contained in:
Jan Korous 2020-05-05 13:54:37 -07:00
parent 965e88e480
commit 05620404c0

View File

@ -656,7 +656,7 @@ private:
// In a RedirectingFileSystem, keys can be specified in Posix or Windows
// style (or even a mixture of both), so this comparison helper allows
// slashes (representing a root) to match backslashes (and vice versa). Note
// that, other than the root, patch components should not contain slashes or
// that, other than the root, path components should not contain slashes or
// backslashes.
bool pathComponentMatches(llvm::StringRef lhs, llvm::StringRef rhs) const {
if ((CaseSensitive ? lhs.equals(rhs) : lhs.equals_lower(rhs)))