diff options
author | Kazuaki Ishizaki <ishizaki@jp.ibm.com> | 2020-04-05 15:28:11 +0900 |
---|---|---|
committer | Kazuaki Ishizaki <ishizaki@jp.ibm.com> | 2020-04-05 15:28:40 +0900 |
commit | dd5571d51a0f6164cb66d02c8cd0e7032e42abe4 (patch) | |
tree | 6e03382aa6f84bb299c249acdec3568841e3ccdb /clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp | |
parent | 86b97f00a284493aabfae62aa14064121c296326 (diff) | |
download | llvm-dd5571d51a0f6164cb66d02c8cd0e7032e42abe4.zip llvm-dd5571d51a0f6164cb66d02c8cd0e7032e42abe4.tar.gz llvm-dd5571d51a0f6164cb66d02c8cd0e7032e42abe4.tar.bz2 |
[clang-tools-extra] NFC: Fix trivial typo in documents and comments
Differential Revision: https://reviews.llvm.org/D77458
Diffstat (limited to 'clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp b/clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp index 307297f..37e4d24 100644 --- a/clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp +++ b/clang-tools-extra/clang-tidy/modernize/UseNullptrCheck.cpp @@ -307,7 +307,7 @@ private: /// SourceLocation pointing within the definition of another macro. bool getMacroAndArgLocations(SourceLocation Loc, SourceLocation &ArgLoc, SourceLocation &MacroLoc) { - assert(Loc.isMacroID() && "Only reasonble to call this on macros"); + assert(Loc.isMacroID() && "Only reasonable to call this on macros"); ArgLoc = Loc; |