Skip to content

Commit e347af4

Browse files
authored
Merge pull request #889 from frostyplanet/main
document fixes
2 parents 1e6a966 + e9bf55c commit e347af4

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/external/serde_support.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ pub mod compact {
360360
}
361361
}
362362

363-
/// Serialize a [`Uuid`] as [`uuid::fmt::Simple`].
363+
/// Serialize a [`Uuid`] as [`uuid::fmt::Simple`]([crate::fmt::Simple]).
364364
///
365365
/// [`Uuid`]: ../../struct.Uuid.html
366366
///
@@ -487,7 +487,7 @@ pub mod simple {
487487
}
488488
}
489489

490-
/// Serialize a [`Uuid`] as [`uuid::fmt::Braced`].
490+
/// Serialize a [`Uuid`] as [`uuid::fmt::Braced`](crate::fmt::Braced).
491491
///
492492
/// [`Uuid`]: ../../struct.Uuid.html
493493
///
@@ -615,7 +615,7 @@ pub mod braced {
615615
}
616616
}
617617

618-
/// Serialize a [`Uuid`] as [`uuid::fmt::Hyphenated`].
618+
/// Serialize a [`Uuid`] as [`uuid::fmt::Hyphenated`](crate::fmt::Hyphenated).
619619
///
620620
/// [`Uuid`]: ../../struct.Uuid.html
621621
///
@@ -744,7 +744,7 @@ pub mod hyphenated {
744744
}
745745
}
746746

747-
/// Serialize a [`Uuid`] as [`uuid::fmt::Urn`].
747+
/// Serialize a [`Uuid`] as [`uuid::fmt::Urn`](crate::fmt::Urn).
748748
///
749749
/// [`Uuid`]: ../../struct.Uuid.html
750750
///

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@
205205
//!
206206
//! [`wasm-bindgen`]: https://crates.io/crates/wasm-bindgen
207207
208+
#![cfg_attr(docsrs, feature(doc_cfg))]
209+
208210
#![no_std]
209211
#![deny(missing_debug_implementations, missing_docs)]
210212
#![allow(clippy::mixed_attributes_style)]

0 commit comments

Comments
 (0)