Skip to content

Commit 8381e2c

Browse files
committed
Adjust marks
1 parent 23da13f commit 8381e2c

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

Sources/MultipartFormData/Boundary.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ extension Boundary {
9292
}
9393
}
9494

95-
// MARK: - Debug
95+
// MARK: - CustomDebugStringConvertible
9696

9797
extension Boundary: CustomDebugStringConvertible {
9898
public var debugDescription: String {
9999
return rawValue
100100
}
101101
}
102102

103-
// MARK: - Helpers
103+
// MARK: - Data
104104

105105
extension Boundary {
106106
/// The raw string representation of a boundary.

Sources/MultipartFormData/HTTPHeaderField.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public protocol HTTPHeaderField: Sendable, Hashable, CustomDebugStringConvertibl
2424
var parameters: [HTTPHeaderParameter] { get set }
2525
}
2626

27-
// MARK: - Debug
27+
// MARK: - CustomDebugStringConvertible
2828

2929
extension HTTPHeaderField {
3030
/// A textual representation of this instance, suitable for debugging.
@@ -33,7 +33,7 @@ extension HTTPHeaderField {
3333
}
3434
}
3535

36-
// MARK: - Helpers
36+
// MARK: - Data
3737

3838
extension HTTPHeaderField {
3939
/// The actual header field value resulting from ``value`` and ``parameters``.

Sources/MultipartFormData/HTTPHeaderParameter.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ public struct HTTPHeaderParameter: Sendable, Hashable {
2424
}
2525
}
2626

27-
// MARK: - Debug
27+
// MARK: - CustomDebugStringConvertible
2828

2929
extension HTTPHeaderParameter: CustomDebugStringConvertible {
3030
public var debugDescription: String {
3131
return rawValue
3232
}
3333
}
3434

35-
// MARK: - Helpers
35+
// MARK: - Data
3636

3737
extension HTTPHeaderParameter {
3838
/// The raw string representation of a header parameter.

Sources/MultipartFormData/MediaType.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ extension UTType {
9292
}
9393
#endif
9494

95-
// MARK: - Debug
95+
// MARK: - CustomDebugStringConvertible
9696

9797
extension MediaType: CustomDebugStringConvertible {
9898
public var debugDescription: String {
9999
return rawValue
100100
}
101101
}
102102

103-
// MARK: - Helpers
103+
// MARK: - Data
104104

105105
extension MediaType {
106106
/// The raw string representation of a media type.

Sources/MultipartFormData/MultipartFormData.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ extension MultipartFormData {
158158
}
159159
}
160160

161-
// MARK: - Debug
161+
// MARK: - CustomDebugStringConvertible
162162

163163
extension MultipartFormData: CustomDebugStringConvertible {
164164
public var debugDescription: String {

Sources/MultipartFormData/Subpart.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ extension Subpart {
7676
}
7777
}
7878

79-
// MARK: - Debug
79+
// MARK: - CustomDebugStringConvertible
8080

8181
extension Subpart: CustomDebugStringConvertible {
8282
public var debugDescription: String {
8383
return String(bytes: data, encoding: .utf8) ?? ""
8484
}
8585
}
8686

87-
// MARK: - Helpers
87+
// MARK: - Data
8888

8989
extension Subpart {
9090
/// The data representation of a subpart.

0 commit comments

Comments
 (0)