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);