[ELF] - Fix mistype in comment. NFC.

llvm-svn: 290510
diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp
index 2d8daad..e056384 100644
--- a/lld/ELF/Writer.cpp
+++ b/lld/ELF/Writer.cpp
@@ -1628,7 +1628,7 @@
   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.