units: Correct docs on private Sealed trait

Trivial fix to the rustdocs on private trait (required to keep linter
quiet).
This commit is contained in:
Tobin C. Harding 2025-01-20 13:22:06 +11:00
parent 3985333e23
commit d97cbc6d27
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ macro_rules! impl_integer {
impl_integer!(u8, i8, u16, i16, u32, i32, u64, i64, u128, i128);
mod sealed {
/// Seals the extension traits.
/// Seals the `Integer` trait.
pub trait Sealed {}
}