diff --git a/crates/matrix-sdk-common/src/ttl_cache.rs b/crates/matrix-sdk-common/src/ttl_cache.rs index ae995a070..0c6b4bb95 100644 --- a/crates/matrix-sdk-common/src/ttl_cache.rs +++ b/crates/matrix-sdk-common/src/ttl_cache.rs @@ -147,7 +147,7 @@ pub struct TtlValue { impl TtlValue { /// The number of milliseconds after which the data is considered stale. /// - /// This matches 7 days. + /// This matches 1 day. pub const STALE_THRESHOLD: f64 = (1000 * 60 * 60 * 24) as _; /// Construct a new `TtlValue` with the given data.