diff --git a/BitFaster.Caching/Lfu/Builder/AsyncConcurrentLfuBuilder.cs b/BitFaster.Caching/Lfu/Builder/AsyncConcurrentLfuBuilder.cs
index 7560229e..08c41b1f 100644
--- a/BitFaster.Caching/Lfu/Builder/AsyncConcurrentLfuBuilder.cs
+++ b/BitFaster.Caching/Lfu/Builder/AsyncConcurrentLfuBuilder.cs
@@ -6,7 +6,6 @@ namespace BitFaster.Caching.Lfu.Builder
///
/// The type of the cache key.
/// The type of the cache value.
- /// The type of the wrapped cache value.
public sealed class AsyncConcurrentLfuBuilder : LfuBuilderBase, IAsyncCache>
{
internal AsyncConcurrentLfuBuilder(LfuInfo info)
diff --git a/BitFaster.Caching/Lfu/Builder/AtomicConcurrentLfuBuilder.cs b/BitFaster.Caching/Lfu/Builder/AtomicConcurrentLfuBuilder.cs
index c35bd110..81b35f4e 100644
--- a/BitFaster.Caching/Lfu/Builder/AtomicConcurrentLfuBuilder.cs
+++ b/BitFaster.Caching/Lfu/Builder/AtomicConcurrentLfuBuilder.cs
@@ -1,10 +1,13 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
+
using BitFaster.Caching.Atomic;
namespace BitFaster.Caching.Lfu.Builder
{
+ ///
+ /// A builder for creating a ConcurrentLfu as IAsyncCache with atomic value creation.
+ ///
+ /// The type of the cache key.
+ /// The type of the cache value.
public class AtomicConcurrentLfuBuilder : LfuBuilderBase, ICache>
{
private readonly ConcurrentLfuBuilder> inner;
diff --git a/BitFaster.Caching/Lfu/Builder/AtomicScopedAsyncConcurrentLfuBuilder.cs b/BitFaster.Caching/Lfu/Builder/AtomicScopedAsyncConcurrentLfuBuilder.cs
index e8f68a0e..9cb9ec9d 100644
--- a/BitFaster.Caching/Lfu/Builder/AtomicScopedAsyncConcurrentLfuBuilder.cs
+++ b/BitFaster.Caching/Lfu/Builder/AtomicScopedAsyncConcurrentLfuBuilder.cs
@@ -1,10 +1,13 @@
using System;
-using System.Collections.Generic;
-using System.Text;
using BitFaster.Caching.Atomic;
namespace BitFaster.Caching.Lfu.Builder
{
+ ///
+ /// A builder for creating a ConcurrentLfu as IScopedAsyncCache with atomic value creation.
+ ///
+ /// The type of the cache key.
+ /// The type of the cache value.
public sealed class AtomicScopedAsyncConcurrentLfuBuilder : LfuBuilderBase, IScopedAsyncCache> where V : IDisposable
{
private readonly AsyncConcurrentLfuBuilder> inner;
diff --git a/BitFaster.Caching/Lfu/Builder/ScopedAsyncConcurrentLfuBuilder.cs b/BitFaster.Caching/Lfu/Builder/ScopedAsyncConcurrentLfuBuilder.cs
index bd3e0693..e80e329b 100644
--- a/BitFaster.Caching/Lfu/Builder/ScopedAsyncConcurrentLfuBuilder.cs
+++ b/BitFaster.Caching/Lfu/Builder/ScopedAsyncConcurrentLfuBuilder.cs
@@ -1,9 +1,12 @@
using System;
-using System.Collections.Generic;
-using System.Text;
namespace BitFaster.Caching.Lfu.Builder
{
+ ///
+ /// A builder for creating a ConcurrentLfu as IScopedAsyncCache.
+ ///
+ /// The type of the cache key.
+ /// The type of the cache value.
public sealed class ScopedAsyncConcurrentLfuBuilder : LfuBuilderBase, IScopedAsyncCache> where V : IDisposable
{
private readonly AsyncConcurrentLfuBuilder> inner;