Skip to content

Commit 0763d5a

Browse files
committed
spelling: the
Signed-off-by: Josh Soref <[email protected]>
1 parent 91c2f54 commit 0763d5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/IDE/CodeCompletion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ void CodeCompletionCallbacksImpl::doneParsing() {
16541654
/// We set the type of ParsedExpr explicitly above. But we don't want an
16551655
/// unresolved type in our AST when we type check again for operator
16561656
/// 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.
16581658
if (ParsedExpr->getType()->is<UnresolvedType>()) {
16591659
ParsedExpr->setType(nullptr);
16601660
}

lib/IDE/Refactoring.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6088,7 +6088,7 @@ class DeclReferenceFinder : private SourceEntityWalker {
60886088
///
60896089
/// Calls to functions with an async alternative will be replaced with a call
60906090
/// 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:
60926092
/// 1. Has no error
60936093
/// 2. Has an error but no error handling (eg. just ignores)
60946094
/// 3. Has error handling that only calls the containing function's handler
@@ -6802,7 +6802,7 @@ class AsyncConverter : private SourceEntityWalker {
68026802
if (ClosedScopeWasWrappedInContinuation &&
68036803
!Scopes.back().isWrappedInContinuation()) {
68046804
// 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
68066806
// withChecked(Throwing)Continuation.
68076807
insertCustom(S->getEndLoc(), [&]() { OS << tok::r_brace << '\n'; });
68086808
}

0 commit comments

Comments
 (0)