Skip to content

Commit

Permalink
fix(docs): Fix typos in Bipartite Buffer docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DNedic committed Jan 4, 2024
1 parent 601a6c7 commit b2f27e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/spsc/bipartite_buf.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b2f27e4

Please sign in to comment.