Mercurial > crates > nonstick
changeset 126:57c812e308bd
Fix punctuation in PamImpl docstring.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Mon, 30 Jun 2025 21:52:10 -0400 |
parents | 2b255c92417b |
children | c77846f3a979 |
files | libpam-sys/libpam-sys-impls/src/lib.rs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpam-sys/libpam-sys-impls/src/lib.rs Mon Jun 30 17:47:32 2025 -0400 +++ b/libpam-sys/libpam-sys-impls/src/lib.rs Mon Jun 30 21:52:10 2025 -0400 @@ -31,7 +31,7 @@ TokenStream::from_str(include_str!(concat!(env!("OUT_DIR"), "/pam_impl_enum.rs"))).unwrap(), quote!( impl PamImpl { - #[doc = concat!("The PAM implementation this was built for (currently `", stringify!(#variant), ")`.")] + #[doc = concat!("The PAM implementation this was built for (currently `", stringify!(#variant), "`).")] pub const CURRENT: Self = Self::#variant; } ),