diff --git a/src/DotNext/Buffers/PooledArrayBufferWriter.cs b/src/DotNext/Buffers/PooledArrayBufferWriter.cs index 38699bf0a..af8593050 100644 --- a/src/DotNext/Buffers/PooledArrayBufferWriter.cs +++ b/src/DotNext/Buffers/PooledArrayBufferWriter.cs @@ -196,7 +196,7 @@ void IList.Insert(int index, T item) /// The span whose elements should be inserted into this buffer. /// the index is invalid. /// This writer has been disposed. - public void Insert(int index, scoped ReadOnlySpan items) + public void Insert(int index, ReadOnlySpan items) { ThrowIfDisposed(); if ((uint)index > (uint)position) @@ -238,7 +238,7 @@ public void Insert(int index, scoped ReadOnlySpan items) /// The span whose elements should be added into this buffer. /// the index is invalid. /// This writer has been disposed. - public void Overwrite(int index, scoped ReadOnlySpan items) + public void Overwrite(int index, ReadOnlySpan items) { ThrowIfDisposed(); if ((uint)index > (uint)position)