Skip to content

Commit df9ffdf

Browse files
committed
fix typo
1 parent 0fc20dc commit df9ffdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clangd/refactor/tweaks/ExtractFunction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ bool isRootStmt(const Node *N) {
105105
if (N->Selected == SelectionTree::Partial)
106106
return false;
107107
// A DeclStmt can be an unselected RootStmt since VarDecls claim the entire
108-
// selection range in selectionTree. Additionally, an CXXOperatorCallExpr of a
108+
// selection range in selectionTree. Additionally, a CXXOperatorCallExpr of a
109109
// binary operation can be unselected because it's children claim the entire
110110
// selection range in the selection tree (e.g. <<).
111111
if (N->Selected == SelectionTree::Unselected && !N->ASTNode.get<DeclStmt>() &&

0 commit comments

Comments
 (0)