diff --git a/packages/effect/src/Chunk.ts b/packages/effect/src/Chunk.ts index e57313ef74..c1f02e92f8 100644 --- a/packages/effect/src/Chunk.ts +++ b/packages/effect/src/Chunk.ts @@ -1392,7 +1392,7 @@ export const reduceRight: { * Creates a `Chunk` of values not included in the other given `Chunk` using the provided `isEquivalent` function. * The order and references of result values are determined by the first `Chunk`. * - * @since 2.0.0 + * @since 3.2.0 */ export const differenceWith = (isEquivalent: (self: A, that: A) => boolean): { (that: Chunk): (self: Chunk) => Chunk