spelling: retrieve

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:36:42 -05:00
parent 2062536f26
commit 656ba98a40
6 changed files with 6 additions and 6 deletions

View file

@ -74,7 +74,7 @@ void shared_circular_buffer_remove_client(SharedCircularBuffer* buffer, SharedCi
//!
//! If the circular buffer wraps in the middle of the requested data, this function call will return true but will
//! provide fewer bytes that requested. When this happens, the length_out parameter will be set to a value smaller
//! than length. A second read call can be made with the remaining smaller length to retreive the rest.
//! than length. A second read call can be made with the remaining smaller length to retrieve the rest.
//!
//! The reason this read doesn't consume is to avoid having to copy out the data. The data_out pointer should be
//! stable until you explicitly ask for it to be consumed with circular_buffer_consume.