Skip to content

Commit

Permalink
Update queue/bytes_queue.go
Browse files Browse the repository at this point in the history
  • Loading branch information
janisz authored Jan 17, 2025
1 parent 33653a6 commit cd319dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queue/bytes_queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
errEmptyQueue = &queueError{"Empty queue"}
errInvalidIndex = &queueError{"Index must be greater than zero. Invalid index."}
errIndexOutOfBounds = &queueError{"Index out of range"}
errFullQueue = &queueError{"Queue is full. Maximum size limit reached."}
errFullQueue = &queueError{"Full queue. Maximum size limit reached."}
)

// BytesQueue is a non-thread safe queue type of fifo based on bytes array.
Expand Down

0 comments on commit cd319dc

Please sign in to comment.