diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-30 13:10:33 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2017-03-30 13:10:33 +0000 |
| commit | 9a54098385e72c74585f2d1a76a7258357aa435d (patch) | |
| tree | c992112b626ed1764affc3517c5a600b6cab541c /clang-tools-extra/clang-tidy/cppcoreguidelines | |
| parent | ce27e59b3e33c11cb385c361ad9cb79c93a7d012 (diff) | |
| download | bcm5719-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.h | 6 |
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; }; |

