commit 781d5c45c49520c0d4d897741b224a54dd5004a4
parent 0dd71f49f16121a07f457aa6e36e955cf12649d8
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Thu, 23 Jun 2022 09:24:09 +0200
Merge pull request #115 from tobiashienzsch/threadpool-typo
Fix typo in thread-pool.h
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/ext/thread-pool.h b/include/clap/ext/thread-pool.h
@@ -27,7 +27,7 @@
///
/// if (!didComputeVoices)
/// for (uint32_t i = 0; i < N; ++i)
-/// myplug_thread_pool_exec(plugin, N);
+/// myplug_thread_pool_exec(plugin, i);
/// ...
/// }
/// @endcode