Skip to content

Commit f819683

Browse files
[stdlib] Adjust formatting to fit 80 columns
1 parent f8c155a commit f819683

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stdlib/public/core/Bit.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ public func < (lhs: Bit, rhs: Bit) -> Bool {
9494
}
9595

9696
extension Bit : IntegerArithmeticType {
97-
static func _withOverflow(intResult: Int, overflow: Bool) -> (Bit, overflow: Bool) {
97+
static func _withOverflow(
98+
intResult: Int, overflow: Bool
99+
) -> (Bit, overflow: Bool) {
98100
if let bit = Bit(rawValue: intResult) {
99101
return (bit, overflow: overflow)
100102
} else {

0 commit comments

Comments
 (0)