@@ -3395,13 +3395,13 @@ public struct FunctionCallExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
3395
3395
}
3396
3396
}
3397
3397
3398
- /// Adds the provided `AdditionalTralingClosure ` to the node's `additionalTrailingClosures`
3398
+ /// Adds the provided `AdditionalTrailingClosure ` to the node's `additionalTrailingClosures`
3399
3399
/// collection.
3400
- /// - param element: The new `AdditionalTralingClosure ` to add to the node's
3400
+ /// - param element: The new `AdditionalTrailingClosure ` to add to the node's
3401
3401
/// `additionalTrailingClosures` collection.
3402
- /// - returns: A copy of the receiver with the provided `AdditionalTralingClosure `
3402
+ /// - returns: A copy of the receiver with the provided `AdditionalTrailingClosure `
3403
3403
/// appended to its `additionalTrailingClosures` collection.
3404
- public func addAdditionalTralingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> FunctionCallExprSyntax {
3404
+ public func addAdditionalTrailingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> FunctionCallExprSyntax {
3405
3405
var collection : RawSyntax
3406
3406
if let col = raw [ Cursor . additionalTrailingClosures] {
3407
3407
collection = col. appending ( element. raw)
@@ -3664,13 +3664,13 @@ public struct SubscriptExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
3664
3664
}
3665
3665
}
3666
3666
3667
- /// Adds the provided `AdditionalTralingClosure ` to the node's `additionalTrailingClosures`
3667
+ /// Adds the provided `AdditionalTrailingClosure ` to the node's `additionalTrailingClosures`
3668
3668
/// collection.
3669
- /// - param element: The new `AdditionalTralingClosure ` to add to the node's
3669
+ /// - param element: The new `AdditionalTrailingClosure ` to add to the node's
3670
3670
/// `additionalTrailingClosures` collection.
3671
- /// - returns: A copy of the receiver with the provided `AdditionalTralingClosure `
3671
+ /// - returns: A copy of the receiver with the provided `AdditionalTrailingClosure `
3672
3672
/// appended to its `additionalTrailingClosures` collection.
3673
- public func addAdditionalTralingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> SubscriptExprSyntax {
3673
+ public func addAdditionalTrailingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> SubscriptExprSyntax {
3674
3674
var collection : RawSyntax
3675
3675
if let col = raw [ Cursor . additionalTrailingClosures] {
3676
3676
collection = col. appending ( element. raw)
0 commit comments