Skip to content

Commit 3ab4422

Browse files
committed
address review: adjust docs
1 parent 0df87d5 commit 3ab4422

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Doc/library/math.integer.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ computed exactly and are integers.
6464

6565
.. function:: isqrt_rem(n, /)
6666

67-
Return a pair of values (s,t) such that s=isqrt(n) and t=n-s*s.
68-
The remainder *t* will be zero, if *n* is a perfect square.
67+
For a nonnegative integer *n*, return the pair of integers ``(s, t)``
68+
such that ``s = isqrt(n)`` and ``t = n - s*s``.
69+
The remainder *t* is zero, if *n* is a perfect square.
6970

7071

7172
.. function:: lcm(*integers)

0 commit comments

Comments
 (0)