[lld] cf59ffb - fix comment typo to cycle bots
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 17 08:49:37 PST 2021
Author: Nico Weber
Date: 2021-02-17T11:49:23-05:00
New Revision: cf59ffbfe3be29e2cec07c5b04e047a2af2ba3f0
URL: https://github.com/llvm/llvm-project/commit/cf59ffbfe3be29e2cec07c5b04e047a2af2ba3f0
DIFF: https://github.com/llvm/llvm-project/commit/cf59ffbfe3be29e2cec07c5b04e047a2af2ba3f0.diff
LOG: fix comment typo to cycle bots
Added:
Modified:
lld/include/lld/Common/Strings.h
Removed:
################################################################################
diff --git a/lld/include/lld/Common/Strings.h b/lld/include/lld/Common/Strings.h
index 38d93e01c0b9..71126f615017 100644
--- a/lld/include/lld/Common/Strings.h
+++ b/lld/include/lld/Common/Strings.h
@@ -32,7 +32,7 @@ void saveBuffer(llvm::StringRef buffer, const llvm::Twine &path);
// glob pattern in the sense of GlobPattern.
class SingleStringMatcher {
public:
- // Create a StringPattern from Pattern to be matched exactly irregardless
+ // Create a StringPattern from Pattern to be matched exactly regardless
// of globbing characters if ExactMatch is true.
SingleStringMatcher(llvm::StringRef Pattern);
@@ -45,8 +45,7 @@ class SingleStringMatcher {
}
private:
- // Whether to do an exact match irregardless of the presence of wildcard
- // character.
+ // Whether to do an exact match regardless of wildcard characters.
bool ExactMatch;
// GlobPattern object if not doing an exact match.
More information about the llvm-commits
mailing list