Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHerrmann committed Oct 16, 2023
1 parent ee92f18 commit 5dc2a36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/MultipartFormData/Boundary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ extension Boundary {

public var debugDescription: String {
switch self {
case .empty:
case .empty:
return "Boundary must not be empty."
case .tooLong:
case .tooLong:
return "Boundary is too long. Max size is 70 characters."
case .noASCII:
case .noASCII:
return "Boundary contains at least one character that is not ASCII compatible."
}
}
Expand Down

0 comments on commit 5dc2a36

Please sign in to comment.