@@ -3395,13 +3395,13 @@ public struct FunctionCallExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
33953395 }
33963396 }
33973397
3398- /// Adds the provided `AdditionalTralingClosure ` to the node's `additionalTrailingClosures`
3398+ /// Adds the provided `AdditionalTrailingClosure ` to the node's `additionalTrailingClosures`
33993399 /// 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
34013401 /// `additionalTrailingClosures` collection.
3402- /// - returns: A copy of the receiver with the provided `AdditionalTralingClosure `
3402+ /// - returns: A copy of the receiver with the provided `AdditionalTrailingClosure `
34033403 /// appended to its `additionalTrailingClosures` collection.
3404- public func addAdditionalTralingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> FunctionCallExprSyntax {
3404+ public func addAdditionalTrailingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> FunctionCallExprSyntax {
34053405 var collection : RawSyntax
34063406 if let col = raw [ Cursor . additionalTrailingClosures] {
34073407 collection = col. appending ( element. raw)
@@ -3664,13 +3664,13 @@ public struct SubscriptExprSyntax: ExprSyntaxProtocol, SyntaxHashable {
36643664 }
36653665 }
36663666
3667- /// Adds the provided `AdditionalTralingClosure ` to the node's `additionalTrailingClosures`
3667+ /// Adds the provided `AdditionalTrailingClosure ` to the node's `additionalTrailingClosures`
36683668 /// 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
36703670 /// `additionalTrailingClosures` collection.
3671- /// - returns: A copy of the receiver with the provided `AdditionalTralingClosure `
3671+ /// - returns: A copy of the receiver with the provided `AdditionalTrailingClosure `
36723672 /// appended to its `additionalTrailingClosures` collection.
3673- public func addAdditionalTralingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> SubscriptExprSyntax {
3673+ public func addAdditionalTrailingClosure ( _ element: MultipleTrailingClosureElementSyntax ) -> SubscriptExprSyntax {
36743674 var collection : RawSyntax
36753675 if let col = raw [ Cursor . additionalTrailingClosures] {
36763676 collection = col. appending ( element. raw)
0 commit comments