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.
This commit is contained in:
2026-07-30 13:38:37 +02:00
parent dec8face54
commit a32a437557
+1 -1
View File
@@ -10,7 +10,7 @@ pub type Timestamp = chrono::DateTime<chrono::Utc>;
/// ///
/// Outline generally uses UUIDs for `id` fields, but some fields /// Outline generally uses UUIDs for `id` fields, but some fields
/// (`urlId`, `shareId`) use a different, shorter format. Modeling `Id` as a /// (`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 /// unexpected value from a self-hosted or future Outline version cannot
/// fail deserialization of an entire response. /// fail deserialization of an entire response.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)] #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]