clap

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

commit 92205009872f5e9ba3601650a706d1219e4c74d3
parent c238a2c727c543def8a4b842ffa7f2dc28094726
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Mon, 25 Apr 2022 17:50:14 +0200

Merge pull request #74 from jpcima/typos

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);