diff --git a/internal/daemon/cache/repository_token.go b/internal/daemon/cache/repository_token.go index 3c1288f87e..1079be46c4 100644 --- a/internal/daemon/cache/repository_token.go +++ b/internal/daemon/cache/repository_token.go @@ -322,7 +322,7 @@ func cleanExpiredOrOrphanedAuthTokens(ctx context.Context, writer db.Writer, idT or -- sqlite stores expiration_time as a string in a format that might not match -- what is being used by current_timestamp. Using datetime() makes the - -- formats match which allow the string comparison perfoemed here to work + -- formats match which allow the string comparison performed here to work -- the same as a time comparison. datetime(expiration_time) < current_timestamp or