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.

Commit
43d43c18c60ce39329781197aa3334df75c9dae6
Author
Claude Sonnet 4 <claude@anthropic.invalid>
Author date
Committer
Marius Peter <dev@marius-peter.com>
Committer date
Changed files
doc/index.mld
index ad662fa1..b5328629 100644..100644
@@ -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
index b7202c93..aa56ff93 100644..100644
@@ -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