Skip to content

Commit 0c21cf8

Browse files
committed
Fix typo
1 parent b742077 commit 0c21cf8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/TestingMacros/Support/ConditionArgumentParsing.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,17 +329,17 @@ private final class _ContextInserter<C, M>: SyntaxRewriter where C: MacroExpansi
329329
}
330330

331331
override func visit(_ node: ClosureExprSyntax) -> ExprSyntax {
332-
// We do not (currently) attempt to descent into closures.
332+
// We do not (currently) attempt to descend into closures.
333333
ExprSyntax(node)
334334
}
335335

336336
override func visit(_ node: MacroExpansionExprSyntax) -> ExprSyntax {
337-
// We do not attempt to descent into freestanding macros.
337+
// We do not attempt to descend into freestanding macros.
338338
ExprSyntax(node)
339339
}
340340

341341
override func visit(_ node: FunctionDeclSyntax) -> DeclSyntax {
342-
// We do not (currently) attempt to descent into functions.
342+
// We do not (currently) attempt to descend into functions.
343343
DeclSyntax(node)
344344
}
345345

0 commit comments

Comments
 (0)