diff --git a/source/coral.cpp b/source/coral.cpp index 3737e5d..4f38cd7 100644 --- a/source/coral.cpp +++ b/source/coral.cpp @@ -641,8 +641,8 @@ export namespace coral { } /** - * Multiplexing byte buffer of `capacity` size that may be used for memory-backed I/O - * operations and lightweight data construction. + * Multiplexing byte-based ring buffer of `capacity` size that may be used for memory-backed + * I/O operations and lightweight data construction. */ template struct ring_buffer : public writer, public reader { ring_buffer(coral::u8 fill_value) : data{fill_value} {}