diff --git a/src/ImageSharp/Memory/AllocationOptions.cs b/src/ImageSharp/Memory/AllocationOptions.cs
index 737762717..5eda00505 100644
--- a/src/ImageSharp/Memory/AllocationOptions.cs
+++ b/src/ImageSharp/Memory/AllocationOptions.cs
@@ -14,7 +14,7 @@ namespace SixLabors.Memory
None,
///
- /// Indicates that the allocated buffer should be cleaned.
+ /// Indicates that the allocated buffer should be cleaned following allocation.
///
Clean
}
diff --git a/src/ImageSharp/Processing/Processors/Normalization/HistogramEqualizationProcessor.cs b/src/ImageSharp/Processing/Processors/Normalization/HistogramEqualizationProcessor.cs
index ba56e392f..b834b8968 100644
--- a/src/ImageSharp/Processing/Processors/Normalization/HistogramEqualizationProcessor.cs
+++ b/src/ImageSharp/Processing/Processors/Normalization/HistogramEqualizationProcessor.cs
@@ -43,8 +43,8 @@ namespace SixLabors.ImageSharp.Processing.Processors.Normalization
Span pixels = source.GetPixelSpan();
// Build the histogram of the grayscale levels.
- using (IBuffer histogramBuffer = memoryAllocator.AllocateClean(this.LuminanceLevels))
- using (IBuffer cdfBuffer = memoryAllocator.AllocateClean(this.LuminanceLevels))
+ using (IBuffer histogramBuffer = memoryAllocator.Allocate(this.LuminanceLevels, AllocationOptions.Clean))
+ using (IBuffer cdfBuffer = memoryAllocator.Allocate(this.LuminanceLevels, AllocationOptions.Clean))
{
Span histogram = histogramBuffer.GetSpan();
for (int i = 0; i < pixels.Length; i++)