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:
@@ -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)]
|
||||||
|
|||||||
Reference in New Issue
Block a user