commit f25a783b7854163140806770198afdf3f43a337d parent 5b885527e8fe442814cb50ad952c612cbfbdda1c Author: falkTX <falktx@falktx.com> Date: Sun, 15 Aug 2021 18:48:27 +0100 Fix a typo Signed-off-by: falkTX <falktx@falktx.com> Diffstat:
M | distrho/extra/RingBuffer.hpp | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/distrho/extra/RingBuffer.hpp b/distrho/extra/RingBuffer.hpp @@ -140,7 +140,7 @@ struct HugeStackBuffer { Typically usage involves: ``` // definition - RingBufferControl<HeapBuffer> myHeapBuffer; // or HeapRingBuffer class directly + HeapRingBuffer myHeapBuffer; // or RingBufferControl<HeapBuffer> class for more control // construction, only needed for heap buffers myHeapBuffer.createBuffer(8192); @@ -168,7 +168,7 @@ class RingBufferControl { public: /* - * Constructor for unitialized ring buffer. + * Constructor for uninitialised ring buffer. * A call to setRingBuffer is required to tied this control to a ring buffer struct; * */