Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andreise committed Aug 16, 2023
1 parent f4c3082 commit 54f0781
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
Expand Down

0 comments on commit 54f0781

Please sign in to comment.