Skip to content

Commit 85b0f6f

Browse files
committed
Typos
1 parent 85fd489 commit 85b0f6f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test_round.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _isodd(v: int) -> bool:
8181
assert round_float(fi, 224.1, RoundMode.ToOdd) == np.inf
8282

8383
fi_binary4p2se = format_info_p3109(4, 2, Signedness.Signed, Domain.Extended)
84-
# †op 3 are 1.0, 1.5, 2.0; even, odd, even
84+
# Top three values are 1.0, 1.5, 2.0; even, odd, even
8585
assert fi_binary4p2se.max == 2.0
8686
assert not _isodd(fi_binary4p2se.code_of_max)
8787

@@ -93,7 +93,7 @@ def _isodd(v: int) -> bool:
9393
assert round_float(fi_binary4p2se, 2.01, RoundMode.ToOdd) == np.inf
9494

9595
fi_binary4p2ue = format_info_p3109(4, 2, Signedness.Unsigned, Domain.Extended)
96-
# †op 2 are 4.0, 6.0, then would be 8.0; even, odd, even
96+
# Top two values are 4.0, 6.0, then would be 8.0; even, odd, even
9797
assert fi_binary4p2ue.max == 6.0
9898
assert _isodd(fi_binary4p2ue.code_of_max)
9999

0 commit comments

Comments
 (0)