Compare commits

..

2 commits

Author SHA1 Message Date
猗露
c06b5a57db
Merge fd1495324a into 14ad490c7e 2025-11-14 22:18:41 +07:00
István Donkó
14ad490c7e fix: insert missing symbol into range doc comments
Some checks failed
Build and Test / build (push) Has been cancelled
Build and Test / format (push) Has been cancelled
2025-10-27 12:03:46 -04:00
2 changed files with 2 additions and 2 deletions

View file

@ -183,7 +183,7 @@ val ( -- ) : int -> int -> int t
[a] and [b] (therefore, never empty). *) [a] and [b] (therefore, never empty). *)
val ( --^ ) : int -> int -> int t val ( --^ ) : int -> int -> int t
(** [a -- b] is the integer range from [a] to [b], where [b] is excluded. *) (** [a --^ b] is the integer range from [a] to [b], where [b] is excluded. *)
(** {2 Operations on two Collections} *) (** {2 Operations on two Collections} *)

View file

@ -139,7 +139,7 @@ val ( -- ) : int -> int -> int t
@since 0.10 *) @since 0.10 *)
val ( --^ ) : int -> int -> int t val ( --^ ) : int -> int -> int t
(** [a -- b] is the integer range from [a] to [b], where [b] is excluded. (** [a --^ b] is the integer range from [a] to [b], where [b] is excluded.
@since 0.17 *) @since 0.17 *)
val pp : 'a printer -> 'a t printer val pp : 'a printer -> 'a t printer