From ae38a73c58cb268e36b4209846b3cd37de73ecb8 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 23 Jun 2025 19:41:24 -0400 Subject: Remove a stray reference to users being called "logins." Missed in 9f7f82dbd9adee8ae18ae7ff2600b3e1dc8fadbc. --- src/token/repo/token.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/token/repo/token.rs b/src/token/repo/token.rs index e49c2d4..cbc50ab 100644 --- a/src/token/repo/token.rs +++ b/src/token/repo/token.rs @@ -23,8 +23,8 @@ impl Provider for Transaction<'_, Sqlite> { pub struct Tokens<'t>(&'t mut SqliteConnection); impl Tokens<'_> { - // Issue a new token for an existing login. The issued_at timestamp will - // be used to control expiry, until the token is actually used. + // Issue a new token for an existing user. The issued_at timestamp will + // determine the token's initial expiry deadline. pub async fn issue( &mut self, user: &History, -- cgit v1.2.3