mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 11:45:31 -05:00
small doc fix
This commit is contained in:
parent
b8ca053a48
commit
8c0d11546e
2 changed files with 4 additions and 2 deletions
|
|
@ -143,7 +143,8 @@ module Infix : sig
|
|||
|
||||
val ( mod ) : t -> t -> t
|
||||
(** [x mod y] is the integer remainder of [x / y].
|
||||
If [y <> zero], the result of [x mod y] satisfies the following property:
|
||||
If [y <> zero], the result of [x mod y] satisfies the following properties:
|
||||
[zero <= x mod y < abs y] and
|
||||
[x = ((x / y) * y) + (x mod y)].
|
||||
If [y = 0], [x mod y] raises [Division_by_zero]. *)
|
||||
|
||||
|
|
|
|||
|
|
@ -146,7 +146,8 @@ module Infix : sig
|
|||
|
||||
val ( mod ) : t -> t -> t
|
||||
(** [x mod y] is the integer remainder of [x / y].
|
||||
If [y <> zero], the result of [x mod y] satisfies the following property:
|
||||
If [y <> zero], the result of [x mod y] satisfies the following properties:
|
||||
[zero <= x mod y < abs y] and
|
||||
[x = ((x / y) * y) + (x mod y)].
|
||||
If [y = 0], [x mod y] raises [Division_by_zero]. *)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue