[lld] r315675 - [LLD] Fix typo. NFC

Shoaib Meenai via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 12 23:11:20 PDT 2017


Author: smeenai
Date: Thu Oct 12 23:11:20 2017
New Revision: 315675

URL: http://llvm.org/viewvc/llvm-project?rev=315675&view=rev
Log:
[LLD] Fix typo. NFC

Modified:
    lld/trunk/ELF/Symbols.cpp

Modified: lld/trunk/ELF/Symbols.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Symbols.cpp?rev=315675&r1=315674&r2=315675&view=diff
==============================================================================
--- lld/trunk/ELF/Symbols.cpp (original)
+++ lld/trunk/ELF/Symbols.cpp Thu Oct 12 23:11:20 2017
@@ -130,7 +130,7 @@ SymbolBody::SymbolBody(Kind K, StringRef
 bool SymbolBody::isUndefWeak() const {
   // A note on isLazy() in the following expression: If you add a weak
   // undefined symbol and then a lazy symbol to the symbol table, the
-  // combined result is a lazy weak symbol. isLazy is for that sitaution.
+  // combined result is a lazy weak symbol. isLazy is for that situation.
   //
   // Weak undefined symbols shouldn't fetch archive members (for
   // compatibility with other linkers), but we still want to memorize




More information about the llvm-commits mailing list