From afcb46dbb1494058e76f9f9c94ede197351dd87c Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 6 Jan 2021 22:11:02 +1000 Subject: [PATCH] Fix a typo. --- research/miniaudio_engine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/research/miniaudio_engine.h b/research/miniaudio_engine.h index ee1e9bf1..937cbea0 100644 --- a/research/miniaudio_engine.h +++ b/research/miniaudio_engine.h @@ -3552,8 +3552,8 @@ static ma_uint32 ma_node_set_read_counter(ma_node* pNode, ma_uint32 newReadCount MA_ASSERT(pNodeBase != NULL); /* - This function will be only ever be called in a controlled environment (only on the audio - thread, and never concurrently). + This function will only ever be called in a controlled environment (only on the audio thread, + and never concurrently). */ oldReadCounter = pNodeBase->readCounter; pNodeBase->readCounter = newReadCounter;