From 31a46b48356a52ca33869e55b2af368e0b7a82aa Mon Sep 17 00:00:00 2001 From: George Rimar Date: Sun, 25 Dec 2016 06:49:17 +0000 Subject: [PATCH] [ELF] - Fix mistype in comment. NFC. llvm-svn: 290510 --- lld/ELF/Writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 2d8daad4f7d5..e056384fbd44 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -1628,7 +1628,7 @@ static void unlinkAsync(StringRef Path) { if (!Config->Threads || !sys::fs::exists(Config->OutputFile)) return; - // First, rename Path to avoid race condition. We cannot remomve + // First, rename Path to avoid race condition. We cannot remove // Path from a different thread because we are now going to create // Path as a new file. If we do that in a different thread, the new // thread can remove the new file.