Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Suchiman committed May 19, 2020
1 parent 758f8b5 commit a4b2755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Common/src/System/Collections/Generic/LowLevelList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ internal class LowLevelList<T>

// Constructs a List. The list is initially empty and has a capacity
// of zero. Upon adding the first element to the list the capacity is
// increased to 16, and then increased in multiples of two as required.
// increased to 4, and then increased in multiples of two as required.
public LowLevelList()
{
_items = s_emptyArray;
Expand Down

0 comments on commit a4b2755

Please sign in to comment.