aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaCodeComplete.cpp
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2021-09-20 19:42:27 -0400
committerNico Weber <thakis@chromium.org>2021-09-20 19:42:49 -0400
commitbde305baf631004b8d00081f11e62b33e1665e45 (patch)
treef7c27a1383ac616e55fa97e4466c3be387b50d9c /clang/lib/Sema/SemaCodeComplete.cpp
parentbb2506061b06e9786b5eb9c458f52f9ba7e52a73 (diff)
downloadllvm-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.cpp2
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";