summaryrefslogtreecommitdiff
path: root/lld/include
diff options
context:
space:
mode:
authorDaniel Bertalan <dani@danielbertalan.dev>2022-06-24 00:19:18 +0200
committerDaniel Bertalan <dani@danielbertalan.dev>2022-06-24 00:19:18 +0200
commit0836fc395f5518966be23bf8dd5ee0010758d794 (patch)
tree49ade8271216132570c92d8a4065ba6e21b0ee47 /lld/include
parent6fa9120080c35a5ff851c3fc3358692c4ef7ce0d (diff)
downloadllvm-0836fc395f5518966be23bf8dd5ee0010758d794.tar.gz
[NFC][lld] Fix typos to test commit access
Diffstat (limited to 'lld/include')
-rw-r--r--lld/include/lld/Common/ErrorHandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/include/lld/Common/ErrorHandler.h b/lld/include/lld/Common/ErrorHandler.h
index 69e798c66ca6..0b69bb6202b3 100644
--- a/lld/include/lld/Common/ErrorHandler.h
+++ b/lld/include/lld/Common/ErrorHandler.h
@@ -134,7 +134,7 @@ private:
// We wrap stdout and stderr so that you can pass alternative stdout/stderr as
// arguments to lld::*::link() functions. Since lld::outs() or lld::errs() can
// be indirectly called from multiple threads, we protect them using a mutex.
- // In the future, we plan on supporting several concurent linker contexts,
+ // In the future, we plan on supporting several concurrent linker contexts,
// which explains why the mutex is not a global but part of this context.
std::mutex mu;
llvm::raw_ostream *stdoutOS{};