diff --git a/clang-tools-extra/clangd/InlayHints.cpp b/clang-tools-extra/clangd/InlayHints.cpp --- a/clang-tools-extra/clangd/InlayHints.cpp +++ b/clang-tools-extra/clangd/InlayHints.cpp @@ -273,7 +273,7 @@ return getSimpleName(E->getMember()).str(); } std::string - VisitDependentScopeMemberExpr(const DependentScopeDeclRefExpr *E) { + VisitDependentScopeDeclRefExpr(const DependentScopeDeclRefExpr *E) { return getSimpleName(E->getDeclName()).str(); } std::string VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *E) { @@ -509,7 +509,7 @@ // Do not show parameter hints for operator calls written using operator // syntax or user-defined literals. (Among other reasons, the resulting - // hints can look awkard, e.g. the expression can itself be a function + // hints can look awkward, e.g. the expression can itself be a function // argument and then we'd get two hints side by side). if (isa(E) || isa(E)) return true;