diff options
author | Jay Foad <jay.foad@amd.com> | 2024-06-13 20:20:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-13 20:20:27 +0100 |
commit | d4a0154902fb9b0611ed857134b26a64a1d5ad1e (patch) | |
tree | 59ee0f3b971b27fe5718ce6a4f658d6b730e97ac /llvm/lib/Support/VirtualFileSystem.cpp | |
parent | cd94fa7e7595cbd0c22e898170d8ee9648b47285 (diff) | |
download | llvm-d4a0154902fb9b0611ed857134b26a64a1d5ad1e.zip llvm-d4a0154902fb9b0611ed857134b26a64a1d5ad1e.tar.gz llvm-d4a0154902fb9b0611ed857134b26a64a1d5ad1e.tar.bz2 |
[llvm-project] Fix typo "seperate" (#95373)
Diffstat (limited to 'llvm/lib/Support/VirtualFileSystem.cpp')
-rw-r--r-- | llvm/lib/Support/VirtualFileSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/VirtualFileSystem.cpp b/llvm/lib/Support/VirtualFileSystem.cpp index 7360901..f9c15bf 100644 --- a/llvm/lib/Support/VirtualFileSystem.cpp +++ b/llvm/lib/Support/VirtualFileSystem.cpp @@ -1373,7 +1373,7 @@ std::error_code RedirectingFileSystem::makeAbsolute(SmallVectorImpl<char> &Path) llvm::sys::path::is_absolute(Path, llvm::sys::path::Style::windows_backslash)) // This covers windows absolute path with forward slash as well, as the - // forward slashes are treated as path seperation in llvm::path + // forward slashes are treated as path separation in llvm::path // regardless of what path::Style is used. return {}; |