diff options
author | Nico Weber <thakis@chromium.org> | 2021-09-20 19:42:27 -0400 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2021-09-20 19:42:49 -0400 |
commit | bde305baf631004b8d00081f11e62b33e1665e45 (patch) | |
tree | f7c27a1383ac616e55fa97e4466c3be387b50d9c /clang/lib/Sema/SemaCodeComplete.cpp | |
parent | bb2506061b06e9786b5eb9c458f52f9ba7e52a73 (diff) | |
download | llvm-bde305baf631004b8d00081f11e62b33e1665e45.zip llvm-bde305baf631004b8d00081f11e62b33e1665e45.tar.gz llvm-bde305baf631004b8d00081f11e62b33e1665e45.tar.bz2 |
[clang] Fix a few comment more typos to cycle bots
Diffstat (limited to 'clang/lib/Sema/SemaCodeComplete.cpp')
-rw-r--r-- | clang/lib/Sema/SemaCodeComplete.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaCodeComplete.cpp b/clang/lib/Sema/SemaCodeComplete.cpp index 8c551a7..610c64d 100644 --- a/clang/lib/Sema/SemaCodeComplete.cpp +++ b/clang/lib/Sema/SemaCodeComplete.cpp @@ -2823,7 +2823,7 @@ FormatFunctionParameter(const PrintingPolicy &Policy, const ParmVarDecl *Param, bool SuppressName = false, bool SuppressBlock = false, Optional<ArrayRef<QualType>> ObjCSubsts = None) { // Params are unavailable in FunctionTypeLoc if the FunctionType is invalid. - // It would be better to pass in the param Type, which is usually avaliable. + // It would be better to pass in the param Type, which is usually available. // But this case is rare, so just pretend we fell back to int as elsewhere. if (!Param) return "int"; |