Skip to content

Commit fea5006

Browse files
committed
spelling: the
Signed-off-by: Josh Soref <[email protected]>
1 parent aeb2432 commit fea5006

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
@@ -1598,7 +1598,7 @@ void CodeCompletionCallbacksImpl::doneParsing() {
15981598
/// We set the type of ParsedExpr explicitly above. But we don't want an
15991599
/// unresolved type in our AST when we type check again for operator
16001600
/// 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.
16021602
if (ParsedExpr->getType()->is<UnresolvedType>()) {
16031603
ParsedExpr->setType(nullptr);
16041604
}

lib/IDE/Refactoring.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6043,7 +6043,7 @@ class DeclReferenceFinder : private SourceEntityWalker {
60436043
///
60446044
/// Calls to functions with an async alternative will be replaced with a call
60456045
/// 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:
60476047
/// 1. Has no error
60486048
/// 2. Has an error but no error handling (eg. just ignores)
60496049
/// 3. Has error handling that only calls the containing function's handler
@@ -6757,7 +6757,7 @@ class AsyncConverter : private SourceEntityWalker {
67576757
if (ClosedScopeWasWrappedInContinuation &&
67586758
!Scopes.back().isWrappedInContinuation()) {
67596759
// 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
67616761
// withChecked(Throwing)Continuation.
67626762
insertCustom(S->getEndLoc(), [&]() { OS << tok::r_brace << '\n'; });
67636763
}

0 commit comments

Comments
 (0)