1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

ProcessContextNonReplacing: Fix typo

This commit is contained in:
reuk 2021-10-20 20:23:37 +01:00
parent 300ab8b084
commit 28c5775958
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -146,7 +146,7 @@ public:
using AudioBlockType = AudioBlock<SampleType>;
using ConstAudioBlockType = AudioBlock<const SampleType>;
/** Creates a ProcessContextReplacing that uses the given input and output blocks.
/** Creates a ProcessContextNonReplacing that uses the given input and output blocks.
Note that the caller must not delete these blocks while they are still in use by this object!
*/
ProcessContextNonReplacing (const ConstAudioBlockType& input, AudioBlockType& output) noexcept