aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-05-09 15:40:09 -0400
committerDavid Robillard <d@drobilla.net>2022-05-09 15:40:09 -0400
commitbd70bc95db7b9aea77d04ffba0693a485d4af8c6 (patch)
tree79bd31cdbec873da4df56a4b7de5911d443b8162 /plugins
parent7ab1f698e8c883b23e6df6a404e7f1c33363ff2d (diff)
downloadlv2-bd70bc95db7b9aea77d04ffba0693a485d4af8c6.tar.xz
Fix incorrect spelling and test for regression with codespell
Diffstat (limited to 'plugins')
-rw-r--r--plugins/eg-amp.lv2/amp.c2
-rw-r--r--plugins/eg-sampler.lv2/sampler.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/eg-amp.lv2/amp.c b/plugins/eg-amp.lv2/amp.c
index 244825f..5b9f577 100644
--- a/plugins/eg-amp.lv2/amp.c
+++ b/plugins/eg-amp.lv2/amp.c
@@ -203,7 +203,7 @@ static const LV2_Descriptor descriptor = {AMP_URI,
The `lv2_descriptor()` function is the entry point to the plugin library. The
host will load the library and call this function repeatedly with increasing
indices to find all the plugins defined in the library. The index is not an
- indentifier, the URI of the returned descriptor is used to determine the
+ identifier, the URI of the returned descriptor is used to determine the
identify of the plugin.
This method is in the ``discovery'' threading class, so no other functions
diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c
index 1efad3c..e7fbbab 100644
--- a/plugins/eg-sampler.lv2/sampler.c
+++ b/plugins/eg-sampler.lv2/sampler.c
@@ -461,7 +461,7 @@ run(LV2_Handle instance, uint32_t sample_count)
render(self, self->frame_offset, ev->time.frames);
/* Update current frame offset to this event's time. This is stored in
- the instance because it is used for sychronous worker event
+ the instance because it is used for synchronous worker event
execution. This allows a sample load event to be executed with
sample accuracy when running in a non-realtime context (such as
exporting a session). */