Skip to content

Commit 3fccbe7

Browse files
committed
Update generated files
1 parent 7597ffc commit 3fccbe7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/SwiftSyntax/generated/raw/RawSyntaxValidation.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ func validateLayout(layout: RawSyntaxBuffer, as kind: SyntaxKind) {
182182
if let error = error {
183183
let (file, line) = error.fileAndLine
184184
assertionFailure("""
185-
Error validating child at index \(index) of \(nodeKind):
185+
Error validating child at index \(index) of \(nodeKind):
186186
\(error.description)
187-
""", file: file, line: line)
187+
""", file: file, line: line)
188188
}
189189
}
190190
func assertAnyHasNoError(_ nodeKind: SyntaxKind, _ index: Int, _ errors: [ValidationError?]) {
@@ -194,11 +194,11 @@ func validateLayout(layout: RawSyntaxBuffer, as kind: SyntaxKind) {
194194
if nonNilErrors.count == errors.count, let firstError = nonNilErrors.first {
195195
let (file, line) = firstError.fileAndLine
196196
assertionFailure("""
197-
Error validating child at index \(index) of \(nodeKind):
197+
Error validating child at index \(index) of \(nodeKind):
198198
Node did not satisfy any node choice requirement.
199199
Validation failures:
200200
\(nonNilErrors.map({ "- \($0.description)" }).joined(separator: "\n"))
201-
""", file: file, line: line)
201+
""", file: file, line: line)
202202
_ = 1
203203
}
204204
}

0 commit comments

Comments
 (0)