Skip to content

Commit fe5e1dc

Browse files
committed
stdlib: floating point test: remove an extra paren from failure output
1 parent cb3ffde commit fe5e1dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/1_stdlib/FloatingPoint.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ struct Float80Bits : Equatable, CustomStringConvertible {
1919
}
2020

2121
var description: String {
22-
return "(\(String(signAndExponent, radix: 16)) \(String(significand, radix: 16))))"
22+
return "(\(String(signAndExponent, radix: 16)) \(String(significand, radix: 16)))"
2323
}
2424
}
2525

0 commit comments

Comments
 (0)