Skip to content

Commit 3eeebe8

Browse files
committed
Fix documentation comments
1 parent fe80cdf commit 3eeebe8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/kcas_data/dllist_intf.ml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ module type Ops = sig
88
[remove] is idempotent. *)
99

1010
val move_l : ('x, 'a node -> 'a t -> unit) fn
11-
(** [move_to_l n l] removes the node [n] from the doubly linked list it is
12-
part of and then add it to the left of list [l]. *)
11+
(** [move_l n l] removes the node [n] from the doubly-linked list it is part
12+
of and then adds it to the left of the list [l]. *)
1313

1414
val move_r : ('x, 'a node -> 'a t -> unit) fn
15-
(** [move_to_r n l] removes the node [n] from the doubly linked list it is
16-
part of and then add it to the right of list [l]. *)
15+
(** [move_r n l] removes the node [n] from the doubly-linked list it is part
16+
of and then adds it to the right of the list [l]. *)
1717

1818
val is_empty : ('x, 'a t -> bool) fn
1919
(** [is_empty l] determines whether the doubly-linked list [l] is empty or

0 commit comments

Comments
 (0)