clap

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

commit dde6b29846e020a9c2c746282363b094d01ee7b1
parent c95cbcef3631df134752fa396c1d441ee46f266b
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Fri, 30 Dec 2022 18:04:23 +0100

Fix typo

Diffstat:
Minclude/clap/ext/params.h | 2+-
Minclude/clap/host.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/ext/params.h b/include/clap/ext/params.h @@ -97,7 +97,7 @@ /// ..... . . /// before: . . and after: . . /// -/// Advices for the host: +/// Advice for the host: /// - store plain values in the document (automation) /// - store modulation amount in plain value delta, not in percentage /// - when you apply a CC mapping, remember the min/max plain values so you can adjust diff --git a/include/clap/host.h b/include/clap/host.h @@ -15,7 +15,7 @@ typedef struct clap_host { const char *name; // eg: "Bitwig Studio" const char *vendor; // eg: "Bitwig GmbH" const char *url; // eg: "https://bitwig.com" - const char *version; // eg: "4.3", see plugin.h for advices on how to format the version + const char *version; // eg: "4.3", see plugin.h for advice on how to format the version // Query an extension. // It is forbidden to call it before plugin->init().