Skip to content

Commit 6b3204f

Browse files
committed
refactor: rename Serializing to Serializable protocol references
1 parent f788f72 commit 6b3204f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/RFC 1123/RFC_1123.Domain.Label.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ extension RFC_1123.Domain.Label: Hashable {
7171
}
7272
}
7373

74-
// MARK: - Serializing
74+
// MARK: - Serializable
7575

76-
extension RFC_1123.Domain.Label: UInt8.ASCII.Serializing {
76+
extension RFC_1123.Domain.Label: UInt8.ASCII.Serializable {
7777
public static let serialize: @Sendable (Self) -> [UInt8] = [UInt8].init
7878

7979
/// Parses a host label from canonical byte representation (CANONICAL PRIMITIVE)

Sources/RFC 1123/RFC_1123.Domain.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ extension RFC_1123.Domain: Hashable {
9191
}
9292
}
9393

94-
// MARK: - Serializing
94+
// MARK: - Serializable
9595

96-
extension RFC_1123.Domain: UInt8.ASCII.Serializing {
96+
extension RFC_1123.Domain: UInt8.ASCII.Serializable {
9797
public static let serialize: @Sendable (Self) -> [UInt8] = [UInt8].init
9898

9999
/// Parses a host name from canonical byte representation (CANONICAL PRIMITIVE)

0 commit comments

Comments
 (0)