From a1d66e2d4cda5ff8d823055396b6c2f6aee4cba9 Mon Sep 17 00:00:00 2001 From: Jody Donetti Date: Mon, 24 Aug 2026 15:11:31 +0200 Subject: [PATCH] Typo in IExpiryCalculator.cs --- BitFaster.Caching/IExpiryCalculator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BitFaster.Caching/IExpiryCalculator.cs b/BitFaster.Caching/IExpiryCalculator.cs index 9b9ef915..2ad4c3f9 100644 --- a/BitFaster.Caching/IExpiryCalculator.cs +++ b/BitFaster.Caching/IExpiryCalculator.cs @@ -14,13 +14,13 @@ public interface IExpiryCalculator Duration GetExpireAfterCreate(K key, V value); /// - /// Specify the time to expire after an entry is read. The current time to expire may be + /// Specify the time to expire after an entry is read. The current time to expire may /// be returned to not modify the expiration time. /// Duration GetExpireAfterRead(K key, V value, Duration current); /// - /// Specify the time to expire after an entry is updated.The current time to expire may be + /// Specify the time to expire after an entry is updated.The current time to expire may /// be returned to not modify the expiration time. /// Duration GetExpireAfterUpdate(K key, V value, Duration current);