We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
[]
()
1 parent 761941a commit d63d661Copy full SHA for d63d661
Sources/PrefixedUUID/PrefixedUUID.swift
@@ -60,7 +60,7 @@ extension PrefixedUUID: CustomStringConvertible {
60
}
61
62
extension PrefixedUUID: CustomDebugStringConvertible {
63
- public var debugDescription: String { "[\(Prefix.uuidPrefix)]\(uuid.uuidString)" }
+ public var debugDescription: String { "(\(Prefix.uuidPrefix))\(uuid.uuidString)" }
64
65
66
extension PrefixedUUID: RawRepresentable {
Tests/PrefixedUUIDTests/PrefixedUUIDTests.swift
@@ -86,7 +86,7 @@ final class PrefixedUUIDTests: XCTestCase {
86
let id = PrefixedUUID<UserIDPrefix>(uuid: uuid)
87
88
let result = String(reflecting: id)
89
- let expected = "[user_]\(uuid.uuidString)"
+ let expected = "(user_)\(uuid.uuidString)"
90
91
XCTAssertEqual(result, expected)
92
0 commit comments