Skip to content

Commit 3141a2c

Browse files
README: fix typos (#77)
1 parent bb4da30 commit 3141a2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
![platform Linux IBM System/390](https://img.shields.io/badge/platform-Linux%20IBM%20System/390-yellow)
1616

1717
# atomic_queue
18-
C++14 multiple-producer-multiple-consumer *lock-free* queues based on circular buffer and [`std::atomic`][3].
18+
C++14 multiple-producer-multiple-consumer *lock-free* queues based on circular buffers and [`std::atomic`][3].
1919

2020
Designed with a goal to minimize the latency between one thread pushing an element into a queue and another thread popping it from the queue.
2121

@@ -92,7 +92,7 @@ make -r -j4 run_benchmarks
9292

9393
The benchmark also requires Intel TBB library to be available. It assumes that it is installed in `/usr/local/include` and `/usr/local/lib`. If it is installed elsewhere you may like to modify `cppflags.tbb` and `ldlibs.tbb` in `Makefile`.
9494

95-
# Library contemts
95+
# Library contents
9696
## Available queues
9797
* `AtomicQueue` - a fixed size ring-buffer for atomic elements.
9898
* `OptimistAtomicQueue` - a faster fixed size ring-buffer for atomic elements which busy-waits when empty or full. It is `AtomicQueue` used with `push`/`pop` instead of `try_push`/`try_pop`.

0 commit comments

Comments
 (0)