From 697e90f291cec1bbd89965c2731f9481ec4507c4 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 25 Sep 2024 01:22:07 -0400 Subject: rustdoc comment for the (very limited) public API of the crate. This silences some `-Wclippy::pedantic` warning, and it's just a good thing to do. I've made the choice to have the docs comment face programmers, and to provide `hi --help` and `hi -h` content via Clap attributes instead of inferring it from the docs comment. Internal (private) "rustdoc" comments have been converted to regular comments until I learn how to write better rustdoc. --- src/repo/login/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/repo/login/store.rs') diff --git a/src/repo/login/store.rs b/src/repo/login/store.rs index 2f922d7..b485941 100644 --- a/src/repo/login/store.rs +++ b/src/repo/login/store.rs @@ -62,7 +62,7 @@ impl<'t> From<&'t mut SqliteConnection> for Logins<'t> { } } -/// Stable identifier for a [Login]. Prefixed with `L`. +// Stable identifier for a [Login]. Prefixed with `L`. #[derive(Clone, Debug, Eq, PartialEq, sqlx::Type, serde::Serialize)] #[sqlx(transparent)] pub struct Id(BaseId); -- cgit v1.2.3