From e5cffbf220658258221f57b6ac8bd35c1446dbae Mon Sep 17 00:00:00 2001 From: Jan Korous Date: Tue, 5 May 2020 13:54:37 -0700 Subject: [PATCH] [VFS][NFC] Fix typo in comment --- llvm/include/llvm/Support/VirtualFileSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/VirtualFileSystem.h b/llvm/include/llvm/Support/VirtualFileSystem.h index f13140c..28fd329 100644 --- a/llvm/include/llvm/Support/VirtualFileSystem.h +++ b/llvm/include/llvm/Support/VirtualFileSystem.h @@ -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))) -- 2.7.4