From a32a4375578f32a364ac7c5861ce0f95ce8985ee Mon Sep 17 00:00:00 2001 From: Henning Oschwald Date: Thu, 30 Jul 2026 13:38:37 +0200 Subject: [PATCH] Fix broken intra-doc link causing cargo doc warning [\`uuid::Uuid\`] resolves as an intra-doc link, but the uuid crate is only in scope when the optional "uuid" feature is enabled, so a default `cargo doc` failed to resolve it. Use a plain code span instead. --- src/models/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/common.rs b/src/models/common.rs index 0f4540b..fede0c7 100644 --- a/src/models/common.rs +++ b/src/models/common.rs @@ -10,7 +10,7 @@ pub type Timestamp = chrono::DateTime; /// /// Outline generally uses UUIDs for `id` fields, but some fields /// (`urlId`, `shareId`) use a different, shorter format. Modeling `Id` as a -/// transparent string newtype (rather than [`uuid::Uuid`]) means an +/// transparent string newtype (rather than `uuid::Uuid`) means an /// unexpected value from a self-hosted or future Outline version cannot /// fail deserialization of an entire response. #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]