Skip to content

Commit

Permalink
Update doc references
Browse files Browse the repository at this point in the history
  • Loading branch information
icristescu committed Sep 9, 2020
1 parent dde7731 commit 29bc64c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/irmin/s.ml
Original file line number Diff line number Diff line change
Expand Up @@ -372,9 +372,9 @@ module type NODE_GRAPH = sig
?rev:bool ->
unit ->
unit Lwt.t
(** [iter min max node edge skip rev ()] iterates in topological order over
the closure of [t] as specified by {{!Private.Node.GRAPH.closure}
GRAPH.closure}.
(** [iter t min max node edge skip rev ()] iterates in topological order over
the closure of [t] as specified by {{!Irmin__Object_graph.S.closure}
Object_graph.closure}.
It applies three functions while traversing the graph: [node] on the
nodes; [edge n predecessor_of_n] on the directed edges and [skip n] to not
Expand Down Expand Up @@ -555,7 +555,7 @@ module type COMMIT_HISTORY = sig

val closure :
[> `Read ] t -> min:commit list -> max:commit list -> commit list Lwt.t
(** Same as {{!Private.Node.GRAPH.closure} GRAPH.closure} but for the history
(** Same as {{!NODE_GRAPH.closure} NODE_GRAPH.closure} but for the history
graph. *)

val iter :
Expand All @@ -568,8 +568,8 @@ module type COMMIT_HISTORY = sig
?rev:bool ->
unit ->
unit Lwt.t
(** [iter min max commit edge skip rev ()] iterates over the closure of [t] as
specified by {{!Irmin__.S.NODE_GRAPH.iter} GRAPH.iter}. *)
(** Same as {{!NODE_GRAPH.iter} NODE_GRAPH.iter} but for traversing the
history graph. *)

(** {1 Value Types} *)

Expand Down

0 comments on commit 29bc64c

Please sign in to comment.