Skip to content

Commit 0c7f85c

Browse files
committed
Feedback
1 parent 33226b0 commit 0c7f85c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

stdlib/public/core/FloatingPointParsing.swift.gyb

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ extension ${Self}: LosslessStringConvertible {
7878
/// let e = ${Self}("2837.5e-2")
7979
/// // e == 28.375
8080
///
81-
/// A decimal string is converted into a correctly-rounded ${Self}
82-
/// instance using IEEE 754 round-to-nearest
83-
/// conventions. Very small values are rounded to positive or
81+
/// A decimal string is converted to a ${Self}
82+
/// instance using the IEEE 754 roundTiesToEven (default) rounding
83+
/// attribute.
84+
/// Very small values are rounded to positive or
8485
/// negative zero, very large values are rounded
8586
/// to plus or minus infinity.
8687
///

0 commit comments

Comments
 (0)