Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions CodeGeneration/Sources/SyntaxSupport/DeclNodes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -959,22 +959,22 @@ public let DECL_NODES: [Node] = [
nameForDiagnostics: "function",
documentation: """
A Swift `func` declaration.

### Example

A func declaration may be declared without any parameter.

```swift
func foo() {

}
```

A func declaration with multiple parameters.

```swift
func bar(_ arg1: Int, _ arg2: Int) {

}
```
""",
Expand Down Expand Up @@ -1268,7 +1268,7 @@ public let DECL_NODES: [Node] = [
kind: .collection(kind: .declModifierList, collectionElementName: "Modifier", defaultsToEmpty: true),
nameForDiagnostics: "modifiers",
documentation:
"Modifiers that are attached to the import declaration. Currently, no modifiers are supported by Swift."
"Modifiers that are attached to the import declaration."
),
Child(
name: "importKeyword",
Expand All @@ -1289,7 +1289,7 @@ public let DECL_NODES: [Node] = [
.keyword(.inout),
]),
documentation: """
The kind of declaration being imported.
The kind of declaration being imported.

A struct can be imported from a specific module.
""",
Expand Down
14 changes: 7 additions & 7 deletions Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodesEF.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading