Skip to content

Commit e645681

Browse files
SignalRTCopilot
andauthored
Update LLama/Common/FixedSizeQueue.cs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 004284b commit e645681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LLama/Common/FixedSizeQueue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public T this[int index]
4646
public FixedSizeQueue(int size)
4747
{
4848
if (size <= 0)
49-
throw new ArgumentOutOfRangeException(nameof(size), size, "Capacity must be positive.");
49+
throw new ArgumentOutOfRangeException(nameof(size), size, "Capacity must be greater than zero.");
5050

5151
Capacity = size;
5252
_buffer = new T[size];

0 commit comments

Comments
 (0)