Skip to content
Merged

Fix typo #55434

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static void Main()
while (moreItemsToAdd)
{
Data data = GetData();
// Blocks if numbers.Count == dataItems.BoundedCapacity
// Blocks if dataItems.Count == dataItems.BoundedCapacity
dataItems.Add(data);
}
// Let consumer know we are done.
Expand Down
Loading