Skip to content

Commit e53acc3

Browse files
committed
refactor: rename Serializing to Serializable protocol references
1 parent ce4af3b commit e53acc3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/RFC 1035/RFC_1035.Domain.Label.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ extension RFC_1035.Domain.Label: Hashable {
7575
}
7676
}
7777

78-
// MARK: - Serializing
78+
// MARK: - Serializable
7979

80-
extension RFC_1035.Domain.Label: UInt8.ASCII.Serializing {
80+
extension RFC_1035.Domain.Label: UInt8.ASCII.Serializable {
8181
public static let serialize: @Sendable (Self) -> [UInt8] = [UInt8].init
8282

8383
/// Parses a domain label from canonical byte representation (CANONICAL PRIMITIVE)

Sources/RFC 1035/RFC_1035.Domain.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ extension RFC_1035.Domain: Hashable {
8080
}
8181
}
8282

83-
// MARK: - Serializing
83+
// MARK: - Serializable
8484

85-
extension RFC_1035.Domain: UInt8.ASCII.Serializing {
85+
extension RFC_1035.Domain: UInt8.ASCII.Serializable {
8686
public static let serialize: @Sendable (Self) -> [UInt8] = [UInt8].init
8787

8888
/// Parses a domain name from canonical byte representation (CANONICAL PRIMITIVE)

0 commit comments

Comments
 (0)