[OCaml] Mobile-friendly clone of cgit.
docs repair odoc references broken by the module renames
The landing page still pointed at Ogit.Diff, and resolvers.mli gained an ambiguous {!repository_layout} once the name existed as both a type and a value. Both surfaced as warnings from dune build @doc, which is otherwise warning-free.
Changed files
doc/index.mld
@@ -37,7 +37,7 @@
37
37
38
38
- {!module-Ogit.Syntax} — guesses a blob's language for highlighting.
39
39
- {!module-Ogit.Time_format} — formats Git dates for display.
40
Removed:
- {!module-Ogit.Diff} — computes line diffs between blobs.
40
Added:
- {!module-Ogit.Line_diff} — computes line-oriented diffs between blobs.
41
41
- {!module-Ogit.Charts} — generates standalone SVG charts.
42
42
- {!module-Ogit.Config} — reads and validates the TOML configuration.
43
43
- {!module-Ogit.List_ext} — small list helpers.
lib/resolvers.mli
@@ -30,8 +30,8 @@
30
30
inspected. *)
31
31
32
32
val repository_layout_or_none : string -> repository_layout option
33
Removed:
(** {!repository_layout} with unreadable paths collapsed to [None], for callers
34
Removed:
that cannot act on the difference. *)
33
Added:
(** {!val-repository_layout} with unreadable paths collapsed to [None], for
34
Added:
callers that cannot act on the difference. *)
35
35
36
36
val repositories : Config.t -> (string list, error) result
37
37