[lld] r328010 - Fix consitent -> consistent.

Eric Christopher via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 20 11:10:30 PDT 2018


Author: echristo
Date: Tue Mar 20 11:10:30 2018
New Revision: 328010

URL: http://llvm.org/viewvc/llvm-project?rev=328010&view=rev
Log:
Fix consitent -> consistent.

Modified:
    lld/trunk/ELF/SyntheticSections.cpp
    lld/trunk/test/lit.cfg.py

Modified: lld/trunk/ELF/SyntheticSections.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/SyntheticSections.cpp?rev=328010&r1=328009&r2=328010&view=diff
==============================================================================
--- lld/trunk/ELF/SyntheticSections.cpp (original)
+++ lld/trunk/ELF/SyntheticSections.cpp Tue Mar 20 11:10:30 2018
@@ -65,7 +65,7 @@ uint64_t SyntheticSection::getVA() const
 // Returns an LLD version string.
 static ArrayRef<uint8_t> getVersion() {
   // Check LLD_VERSION first for ease of testing.
-  // You can get consitent output by using the environment variable.
+  // You can get consistent output by using the environment variable.
   // This is only for testing.
   StringRef S = getenv("LLD_VERSION");
   if (S.empty())

Modified: lld/trunk/test/lit.cfg.py
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/lit.cfg.py?rev=328010&r1=328009&r2=328010&view=diff
==============================================================================
--- lld/trunk/test/lit.cfg.py (original)
+++ lld/trunk/test/lit.cfg.py Tue Mar 20 11:10:30 2018
@@ -71,7 +71,7 @@ llvm_config.feature_config(
                           'X86': 'x86'})
      ])
 
-# Set a fake constant version so that we get consitent output.
+# Set a fake constant version so that we get consistent output.
 config.environment['LLD_VERSION'] = 'LLD 1.0'
 config.environment['LLD_IN_TEST'] = '1'
 




More information about the llvm-commits mailing list