@@ -2671,8 +2671,7 @@ extension MemberDeclBlockSyntax: CustomReflectable {
2671
2671
// MARK: - MemberDeclListItemSyntax
2672
2672
2673
2673
///
2674
- /// A member declaration of a type consisting of a declaration and an
2675
- /// optional semicolon;
2674
+ /// A member declaration of a type consisting of a declaration and an optional semicolon;
2676
2675
///
2677
2676
public struct MemberDeclListItemSyntax : SyntaxProtocol {
2678
2677
enum Cursor : Int {
@@ -3743,8 +3742,7 @@ extension PatternBindingSyntax: CustomReflectable {
3743
3742
// MARK: - EnumCaseElementSyntax
3744
3743
3745
3744
///
3746
- /// An element of an enum case, containing the name of the case and,
3747
- /// optionally, either associated values or an assignment to a raw value.
3745
+ /// An element of an enum case, containing the name of the case and, optionally, either associated values or an assignment to a raw value.
3748
3746
///
3749
3747
public struct EnumCaseElementSyntax : SyntaxProtocol {
3750
3748
enum Cursor : Int {
@@ -3842,8 +3840,7 @@ public struct EnumCaseElementSyntax: SyntaxProtocol {
3842
3840
}
3843
3841
3844
3842
///
3845
- /// The trailing comma of this element, if the case has
3846
- /// multiple elements.
3843
+ /// The trailing comma of this element, if the case has multiple elements.
3847
3844
///
3848
3845
public var trailingComma : TokenSyntax ? {
3849
3846
get {
@@ -4685,9 +4682,7 @@ public struct AttributeSyntax: SyntaxProtocol {
4685
4682
}
4686
4683
4687
4684
///
4688
- /// The arguments of the attribute. In case the attribute
4689
- /// takes multiple arguments, they are gather in the
4690
- /// appropriate takes first.
4685
+ /// The arguments of the attribute. In case the attribute takes multiple arguments, they are gather in the appropriate takes first.
4691
4686
///
4692
4687
public var argument : Syntax ? {
4693
4688
get {
@@ -4794,8 +4789,7 @@ extension AttributeSyntax: CustomReflectable {
4794
4789
// MARK: - LabeledSpecializeEntrySyntax
4795
4790
4796
4791
///
4797
- /// A labeled argument for the `@_specialize` attribute like
4798
- /// `exported: true`
4792
+ /// A labeled argument for the `@_specialize` attribute like `exported: true`
4799
4793
///
4800
4794
public struct LabeledSpecializeEntrySyntax : SyntaxProtocol {
4801
4795
enum Cursor : Int {
@@ -4928,9 +4922,7 @@ extension LabeledSpecializeEntrySyntax: CustomReflectable {
4928
4922
// MARK: - NamedAttributeStringArgumentSyntax
4929
4923
4930
4924
///
4931
- /// The argument for the `@_dynamic_replacement` or `@_private`
4932
- /// attribute of the form `for: "function()"` or `sourceFile:
4933
- /// "Src.swift"`
4925
+ /// The argument for the `@_dynamic_replacement` or `@_private` attribute of the form `for: "function()"` or `sourceFile: "Src.swift"`
4934
4926
///
4935
4927
public struct NamedAttributeStringArgumentSyntax : SyntaxProtocol {
4936
4928
enum Cursor : Int {
@@ -5082,8 +5074,7 @@ public struct DeclNameSyntax: SyntaxProtocol {
5082
5074
}
5083
5075
5084
5076
///
5085
- /// The argument labels of the protocol's requirement if it
5086
- /// is a function requirement.
5077
+ /// The argument labels of the protocol's requirement if it is a function requirement.
5087
5078
///
5088
5079
public var declNameArguments : DeclNameArgumentsSyntax ? {
5089
5080
get {
@@ -5120,8 +5111,7 @@ extension DeclNameSyntax: CustomReflectable {
5120
5111
// MARK: - ImplementsAttributeArgumentsSyntax
5121
5112
5122
5113
///
5123
- /// The arguments for the `@_implements` attribute of the form
5124
- /// `Type, methodName(arg1Label:arg2Label:)`
5114
+ /// The arguments for the `@_implements` attribute of the form `Type, methodName(arg1Label:arg2Label:)`
5125
5115
///
5126
5116
public struct ImplementsAttributeArgumentsSyntax : SyntaxProtocol {
5127
5117
enum Cursor : Int {
@@ -5149,8 +5139,7 @@ public struct ImplementsAttributeArgumentsSyntax: SyntaxProtocol {
5149
5139
}
5150
5140
5151
5141
///
5152
- /// The type for which the method with this attribute
5153
- /// implements a requirement.
5142
+ /// The type for which the method with this attribute implements a requirement.
5154
5143
///
5155
5144
public var type : SimpleTypeIdentifierSyntax {
5156
5145
get {
@@ -5222,8 +5211,7 @@ public struct ImplementsAttributeArgumentsSyntax: SyntaxProtocol {
5222
5211
}
5223
5212
5224
5213
///
5225
- /// The argument labels of the protocol's requirement if it
5226
- /// is a function requirement.
5214
+ /// The argument labels of the protocol's requirement if it is a function requirement.
5227
5215
///
5228
5216
public var declNameArguments : DeclNameArgumentsSyntax ? {
5229
5217
get {
@@ -5262,9 +5250,7 @@ extension ImplementsAttributeArgumentsSyntax: CustomReflectable {
5262
5250
// MARK: - ObjCSelectorPieceSyntax
5263
5251
5264
5252
///
5265
- /// A piece of an Objective-C selector. Either consisiting of just an
5266
- /// identifier for a nullary selector, an identifier and a colon for a
5267
- /// labeled argument or just a colon for an unlabeled argument
5253
+ /// A piece of an Objective-C selector. Either consisiting of just an identifier for a nullary selector, an identifier and a colon for a labeled argument or just a colon for an unlabeled argument
5268
5254
///
5269
5255
public struct ObjCSelectorPieceSyntax : SyntaxProtocol {
5270
5256
enum Cursor : Int {
@@ -8070,8 +8056,7 @@ extension TuplePatternElementSyntax: CustomReflectable {
8070
8056
// MARK: - AvailabilityArgumentSyntax
8071
8057
8072
8058
///
8073
- /// A single argument to an `@available` argument like `*`, `iOS 10.1`,
8074
- /// or `message: "This has been deprecated"`.
8059
+ /// A single argument to an `@available` argument like `*`, `iOS 10.1`, or `message: "This has been deprecated"`.
8075
8060
///
8076
8061
public struct AvailabilityArgumentSyntax : SyntaxProtocol {
8077
8062
enum Cursor : Int {
@@ -8119,8 +8104,7 @@ public struct AvailabilityArgumentSyntax: SyntaxProtocol {
8119
8104
}
8120
8105
8121
8106
///
8122
- /// A trailing comma if the argument is followed by another
8123
- /// argument
8107
+ /// A trailing comma if the argument is followed by another argument
8124
8108
///
8125
8109
public var trailingComma : TokenSyntax ? {
8126
8110
get {
@@ -8157,8 +8141,7 @@ extension AvailabilityArgumentSyntax: CustomReflectable {
8157
8141
// MARK: - AvailabilityLabeledArgumentSyntax
8158
8142
8159
8143
///
8160
- /// A argument to an `@available` attribute that consists of a label and
8161
- /// a value, e.g. `message: "This has been deprecated"`.
8144
+ /// A argument to an `@available` attribute that consists of a label and a value, e.g. `message: "This has been deprecated"`.
8162
8145
///
8163
8146
public struct AvailabilityLabeledArgumentSyntax : SyntaxProtocol {
8164
8147
enum Cursor : Int {
@@ -8264,8 +8247,7 @@ extension AvailabilityLabeledArgumentSyntax: CustomReflectable {
8264
8247
// MARK: - AvailabilityVersionRestrictionSyntax
8265
8248
8266
8249
///
8267
- /// An argument to `@available` that restricts the availability on a
8268
- /// certain platform to a version, e.g. `iOS 10` or `swift 3.4`.
8250
+ /// An argument to `@available` that restricts the availability on a certain platform to a version, e.g. `iOS 10` or `swift 3.4`.
8269
8251
///
8270
8252
public struct AvailabilityVersionRestrictionSyntax : SyntaxProtocol {
8271
8253
enum Cursor : Int {
@@ -8291,9 +8273,7 @@ public struct AvailabilityVersionRestrictionSyntax: SyntaxProtocol {
8291
8273
}
8292
8274
8293
8275
///
8294
- /// The name of the OS on which the availability should be
8295
- /// restricted or 'swift' if the availability should be
8296
- /// restricted based on a Swift version.
8276
+ /// The name of the OS on which the availability should be restricted or 'swift' if the availability should be restricted based on a Swift version.
8297
8277
///
8298
8278
public var platform : TokenSyntax {
8299
8279
get {
@@ -8350,8 +8330,7 @@ extension AvailabilityVersionRestrictionSyntax: CustomReflectable {
8350
8330
// MARK: - VersionTupleSyntax
8351
8331
8352
8332
///
8353
- /// A version number of the form major.minor.patch in which the minor
8354
- /// and patch part may be ommited.
8333
+ /// A version number of the form major.minor.patch in which the minor and patch part may be ommited.
8355
8334
///
8356
8335
public struct VersionTupleSyntax : SyntaxProtocol {
8357
8336
enum Cursor : Int {
@@ -8378,11 +8357,7 @@ public struct VersionTupleSyntax: SyntaxProtocol {
8378
8357
}
8379
8358
8380
8359
///
8381
- /// In case the version consists only of the major version, an
8382
- /// integer literal that specifies the major version. In case
8383
- /// the version consists of major and minor version number, a
8384
- /// floating literal in which the decimal part is interpreted
8385
- /// as the minor version.
8360
+ /// In case the version consists only of the major version, an integer literal that specifies the major version. In case the version consists of major and minor version number, a floating literal in which the decimal part is interpreted as the minor version.
8386
8361
///
8387
8362
public var majorMinor : Syntax {
8388
8363
get {
@@ -8406,8 +8381,7 @@ public struct VersionTupleSyntax: SyntaxProtocol {
8406
8381
}
8407
8382
8408
8383
///
8409
- /// If the version contains a patch number, the period
8410
- /// separating the minor from the patch number.
8384
+ /// If the version contains a patch number, the period separating the minor from the patch number.
8411
8385
///
8412
8386
public var patchPeriod : TokenSyntax ? {
8413
8387
get {
0 commit comments