clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 10953f4f9feba70461517b151a9983b4e5eb19e6
parent c238a2c727c543def8a4b842ffa7f2dc28094726
Author: Jean Pierre Cimalando <jp-dev@inbox.ru>
Date:   Mon, 25 Apr 2022 17:32:32 +0200

Fix a few typos

Diffstat:
Minclude/clap/converters/clap-converter.h | 2+-
Minclude/clap/converters/vst2-converter.h | 2+-
Minclude/clap/converters/vst3-converter.h | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/clap/converters/clap-converter.h b/include/clap/converters/clap-converter.h @@ -7,7 +7,7 @@ extern "C" { #endif -// This interface provide all the tool to convert a clap plugin instance into a clap plugin instance +// This interface provides all the tools to convert a clap plugin instance into a clap plugin instance. typedef struct clap_clap_converter { const char *src_plugin_id; const char *dst_plugin_id; diff --git a/include/clap/converters/vst2-converter.h b/include/clap/converters/vst2-converter.h @@ -7,7 +7,7 @@ extern "C" { #endif -// This interface provide all the tool to convert a vst2 plugin instance into a clap plugin instance +// This interface provides all the tools to convert a vst2 plugin instance into a clap plugin instance. typedef struct clap_vst2_converter { uint32_t vst2_plugin_id; const char *vst2_plugin_name; diff --git a/include/clap/converters/vst3-converter.h b/include/clap/converters/vst3-converter.h @@ -7,7 +7,7 @@ extern "C" { #endif -// This interface provide all the tool to convert a vst3 plugin instance into a clap plugin instance +// This interface provides all the tools to convert a vst3 plugin instance into a clap plugin instance. typedef struct clap_vst3_converter { // The VST FUID can be constructed by: // Steinberg::FUID::fromTUID(conv->vst3_plugin_tuid);