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 @@ -1654,7 +1654,7 @@ void CodeCompletionCallbacksImpl::doneParsing() {
1654
1654
// / We set the type of ParsedExpr explicitly above. But we don't want an
1655
1655
// / unresolved type in our AST when we type check again for operator
1656
1656
// / completions. Remove the type of the ParsedExpr and see if we can come up
1657
- // / with something more useful based on the the full sequence expression.
1657
+ // / with something more useful based on the full sequence expression.
1658
1658
if (ParsedExpr->getType ()->is <UnresolvedType>()) {
1659
1659
ParsedExpr->setType (nullptr );
1660
1660
}
Original file line number Diff line number Diff line change @@ -6088,7 +6088,7 @@ class DeclReferenceFinder : private SourceEntityWalker {
6088
6088
// /
6089
6089
// / Calls to functions with an async alternative will be replaced with a call
6090
6090
// / to the alternative, possibly wrapped in a do/catch. The do/catch is skipped
6091
- // / if the the closure either:
6091
+ // / if the closure either:
6092
6092
// / 1. Has no error
6093
6093
// / 2. Has an error but no error handling (eg. just ignores)
6094
6094
// / 3. Has error handling that only calls the containing function's handler
@@ -6802,7 +6802,7 @@ class AsyncConverter : private SourceEntityWalker {
6802
6802
if (ClosedScopeWasWrappedInContinuation &&
6803
6803
!Scopes.back ().isWrappedInContinuation ()) {
6804
6804
// The nested scope was wrapped in a continuation but the current one
6805
- // isn't anymore. Add the '}' that corresponds to the the call to
6805
+ // isn't anymore. Add the '}' that corresponds to the call to
6806
6806
// withChecked(Throwing)Continuation.
6807
6807
insertCustom (S->getEndLoc (), [&]() { OS << tok::r_brace << ' \n ' ; });
6808
6808
}
You can’t perform that action at this time.
0 commit comments