File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1598,7 +1598,7 @@ void CodeCompletionCallbacksImpl::doneParsing() {
1598
1598
// / We set the type of ParsedExpr explicitly above. But we don't want an
1599
1599
// / unresolved type in our AST when we type check again for operator
1600
1600
// / completions. Remove the type of the ParsedExpr and see if we can come up
1601
- // / with something more useful based on the the full sequence expression.
1601
+ // / with something more useful based on the full sequence expression.
1602
1602
if (ParsedExpr->getType ()->is <UnresolvedType>()) {
1603
1603
ParsedExpr->setType (nullptr );
1604
1604
}
Original file line number Diff line number Diff line change @@ -6043,7 +6043,7 @@ class DeclReferenceFinder : private SourceEntityWalker {
6043
6043
// /
6044
6044
// / Calls to functions with an async alternative will be replaced with a call
6045
6045
// / to the alternative, possibly wrapped in a do/catch. The do/catch is skipped
6046
- // / if the the closure either:
6046
+ // / if the closure either:
6047
6047
// / 1. Has no error
6048
6048
// / 2. Has an error but no error handling (eg. just ignores)
6049
6049
// / 3. Has error handling that only calls the containing function's handler
@@ -6757,7 +6757,7 @@ class AsyncConverter : private SourceEntityWalker {
6757
6757
if (ClosedScopeWasWrappedInContinuation &&
6758
6758
!Scopes.back ().isWrappedInContinuation ()) {
6759
6759
// The nested scope was wrapped in a continuation but the current one
6760
- // isn't anymore. Add the '}' that corresponds to the the call to
6760
+ // isn't anymore. Add the '}' that corresponds to the call to
6761
6761
// withChecked(Throwing)Continuation.
6762
6762
insertCustom (S->getEndLoc (), [&]() { OS << tok::r_brace << ' \n ' ; });
6763
6763
}
You can’t perform that action at this time.
0 commit comments