Make Formatter Happy
Continuous Integration / Grammar Tests (push) Failing after 5s
Continuous Integration / Library Tests (push) Failing after 5s
Continuous Integration / Library Format Tests (push) Failing after 6s

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-05-04 22:25:51 -04:00
parent 7a36ca32dd
commit dd0bbbe479
3 changed files with 19 additions and 16 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ public struct ErrorWithLocation: Errorable, Equatable, CustomStringConvertible {
public struct Errors: Errorable, CustomStringConvertible {
public func format(_ formatter: any Formattable) -> String {
self.errors.map() { error in
self.errors.map { error in
error.format(formatter)
}.joined(separator: "\n")
}