From b2f27e4e67c0729999c7a7969c7a0199cedd4f8e Mon Sep 17 00:00:00 2001 From: Djordje Nedic Date: Thu, 4 Jan 2024 12:18:48 +0100 Subject: [PATCH] fix(docs): Fix typos in Bipartite Buffer docs --- docs/spsc/bipartite_buf.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/spsc/bipartite_buf.md b/docs/spsc/bipartite_buf.md index a7aa4cf..f814226 100644 --- a/docs/spsc/bipartite_buf.md +++ b/docs/spsc/bipartite_buf.md @@ -3,8 +3,8 @@ ## When to use the Bipartite Buffer A bipartite buffer should be used everywhere the Ring Buffer is used if you want: * To offload transfers to DMA increasing the transfer speed and freeing up CPU time -* To avoid creating intermediate buffers for APIs that require contigous data -* To process data inside the buffer without dequeing it +* To avoid creating intermediate buffers for APIs that require contiguous data +* To process data inside the buffer without dequeueing it * When operations on data can fail or only some of the data is used > Note: At the moment, the Bipartite Buffer is only meant to be used for [trivial](https://en.cppreference.com/w/cpp/language/classes#Trivial_class) types.