From 5e9e27e21b6363bfe8eab98f4aaa1ebb00a0f2f6 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 27 Jan 2025 17:55:29 +0100 Subject: [PATCH] Mention the tracking issue of `--output-format=doctest` --- src/librustdoc/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/librustdoc/config.rs b/src/librustdoc/config.rs index 91f27166e471..aa313af94ca7 100644 --- a/src/librustdoc/config.rs +++ b/src/librustdoc/config.rs @@ -455,6 +455,8 @@ impl Options { { let extra = if format == "json" { " (see https://github.com/rust-lang/rust/issues/76578)" + } else if format == "doctest" { + " (see https://github.com/rust-lang/rust/issues/134529)" } else { "" };