ir_user.cpp: Corrected typo in comment (#584)

This commit is contained in:
Ikko Eltociear Ashimine 2025-03-01 06:31:59 +09:00 committed by GitHub
parent aa5dc18471
commit b4e90e95b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,7 +64,7 @@ static_assert(sizeof(SharedMemoryHeader) == 16, "SharedMemoryHeader has wrong si
* A buffer consists of three parts:
* - BufferInfo: stores available count of packets, and their position in the PacketInfo
* circular queue.
* - PacketInfo circular queue: stores the position of each avaiable packets in the Packet data
* - PacketInfo circular queue: stores the position of each available packets in the Packet data
* buffer. Each entry is a pair of {offset, size}.
* - Packet data circular buffer: stores the actual data of packets.
*