summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy/cppcoreguidelines
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2017-03-30 13:10:33 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2017-03-30 13:10:33 +0000
commit9a54098385e72c74585f2d1a76a7258357aa435d (patch)
treec992112b626ed1764affc3517c5a600b6cab541c /clang-tools-extra/clang-tidy/cppcoreguidelines
parentce27e59b3e33c11cb385c361ad9cb79c93a7d012 (diff)
downloadbcm5719-llvm-9a54098385e72c74585f2d1a76a7258357aa435d.tar.gz
bcm5719-llvm-9a54098385e72c74585f2d1a76a7258357aa435d.zip
Spelling mistakes in comments. NFCI.
Based on corrections mentioned in patch for clang for PR27635 llvm-svn: 299074
Diffstat (limited to 'clang-tools-extra/clang-tidy/cppcoreguidelines')
-rw-r--r--clang-tools-extra/clang-tidy/cppcoreguidelines/NoMallocCheck.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/cppcoreguidelines/NoMallocCheck.h b/clang-tools-extra/clang-tidy/cppcoreguidelines/NoMallocCheck.h
index 66b29f7b902..4cec8a8346b 100644
--- a/clang-tools-extra/clang-tidy/cppcoreguidelines/NoMallocCheck.h
+++ b/clang-tools-extra/clang-tidy/cppcoreguidelines/NoMallocCheck.h
@@ -44,13 +44,13 @@ public:
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
private:
- /// Semicolon-seperated list of fully qualified names of memory allocation
+ /// Semicolon-separated list of fully qualified names of memory allocation
/// functions the check warns about. Defaults to `::malloc;::calloc`.
const std::string AllocList;
- /// Semicolon-seperated list of fully qualified names of memory reallocation
+ /// Semicolon-separated list of fully qualified names of memory reallocation
/// functions the check warns about. Defaults to `::realloc`.
const std::string ReallocList;
- /// Semicolon-seperated list of fully qualified names of memory deallocation
+ /// Semicolon-separated list of fully qualified names of memory deallocation
/// functions the check warns about. Defaults to `::free`.
const std::string DeallocList;
};
OpenPOWER on IntegriCloud