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 f618c1c commit 08d05e6Copy full SHA for 08d05e6
Sources/RawStructuredFieldValues/FieldSerializer.swift
@@ -280,6 +280,6 @@ extension UInt8 {
280
281
/// Converts an integer to its hex character in UTF8.
282
private static func itoh(_ int: Self) -> Self {
283
- return (int > 9) ? (asciiLowerA + int - 10) : (asciiZero + int)
+ (int > 9) ? (asciiLowerA + int - 10) : (asciiZero + int)
284
}
285
0 commit comments