From 4cd610e0edf1d8b93734a355fd874a1d292eb237 Mon Sep 17 00:00:00 2001 From: antonkri <63401640+antonkri@users.noreply.github.com> Date: Mon, 21 Sep 2026 10:33:45 +0000 Subject: [PATCH] docs: fix mount cross-reference in time detailed design The absolute :doc: reference to /module/manuals/user_manual resolves against the combined-site source root once this bundle is mounted into a consumer's aggregated docs build (e.g. reference_integration), not against this bundle's own mount subtree, causing a "WARNING: unknown document" build failure (treated as error with -W). Convert it to a relative reference, following the same fix pattern as #224. --- score/time/docs/detailed_design/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/score/time/docs/detailed_design/index.rst b/score/time/docs/detailed_design/index.rst index 7c0e61d3..4a43ddfb 100644 --- a/score/time/docs/detailed_design/index.rst +++ b/score/time/docs/detailed_design/index.rst @@ -263,7 +263,7 @@ Working code examples for all clock domains are available in ``examples/time/``: Each example includes buildable source code with unit tests demonstrating API usage and testing patterns. -For comprehensive usage guidance, see :doc:`User Manual `. +For comprehensive usage guidance, see the :ref:`module user manual`. Bazel Dependencies ------------------