rename is_fresh -> isFresh
All checks were successful
Generic zig build / build (push) Successful in 19s

This commit is contained in:
Emil Lerch 2026-03-06 10:36:36 -08:00
parent b314b0fd0f
commit 7aa7ec112a
Signed by: lobo
GPG key ID: A7B62D657EF764F8

View file

@ -601,7 +601,7 @@ pub const Parsed = struct {
_ = writer;
}
pub fn is_fresh(self: Parsed) bool {
pub fn isFresh(self: Parsed) bool {
if (self.expires) |exp|
return std.time.timestamp() < exp;