diff --git a/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Clear.cs b/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Clear.cs index b658bd78..0520aa23 100644 --- a/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Clear.cs +++ b/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Clear.cs @@ -12,7 +12,7 @@ internal void Clear() return; } - // Array.Clear uses the same SpanHelpers but also contains code that handles the non-standard arrays + // Array.Clear uses Span but also contains code that handles the non-standard arrays // Thus, Span is more efficient for the standard arrays var span = InnerAsSpan(); diff --git a/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Fill.cs b/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Fill.cs index 39569d3e..ae397975 100644 --- a/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Fill.cs +++ b/src/flatcollections-array/FlatArray/FlatArray.T.Builder/FlatArray.Builder.Fill.cs @@ -11,7 +11,7 @@ public void Fill() return; } - // Array.Clear uses the same SpanHelpers but also contains code that handles the non-standard arrays + // Array.Clear uses Span but also contains code that handles the non-standard arrays // Thus, Span is more efficient for the standard arrays var span = InnerAsSpan(); @@ -26,7 +26,7 @@ public void Fill(T value) return; } - // Array.Fill uses the same SpanHelpers but also contains code that handles the non-standard arrays + // Array.Fill uses Span but also contains code that handles the non-standard arrays // Thus, Span is more efficient for the standard arrays var span = InnerAsSpan();