Skip to content

Commit

Permalink
fix \lt to <
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeniau committed Dec 12, 2022
1 parent 0341489 commit 661aba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Functions Return :const:`true` if :var:`a`
:func:`is_znegative(a)` is a :type:`number` with :math:`a \le 0`
:func:`is_nonzero(a)` is a :type:`number` with :math:`a \ne 0`
:func:`is_integer(a)` is a :type:`number` with :math:`-2^{52} \le a \le 2^{52}` and no fractional part
:func:`is_int32(a)` is a :type:`number` with :math:`-2^{31} \le a \lt 2^{31}` and no fractional part
:func:`is_int32(a)` is a :type:`number` with :math:`-2^{31} \le a < 2^{31}` and no fractional part
:func:`is_natural(a)` is an :type:`integer` with :math:`a \ge 0`
:func:`is_even(a)` is an even :type:`integer`
:func:`is_odd(a)` is an odd :type:`integer`
Expand Down

0 comments on commit 661aba9

Please sign in to comment.