From ba9e9253f2907cd132a1df5062899a6a18bb8135 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 23 Oct 2022 16:33:20 +0200 Subject: [PATCH] Clean up Plugin trait doc comment --- src/plugin.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin.rs b/src/plugin.rs index 093e76f6..0ba281b1 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -22,9 +22,9 @@ pub type TaskExecutor

= Box::BackgroundTask) + Send>; /// /// The main thing you need to do is define a `[Params]` struct containing all of your parameters. /// See the trait's documentation for more information on how to do that, or check out the examples. +/// Most of the other functionality is optional and comes with default trait method implementations. /// -/// This is super basic, and lots of things I didn't need or want to use yet haven't been -/// implemented. Notable missing features include: +/// Some notable not yet implemented features include: /// /// - MIDI SysEx and MIDI2 for CLAP, note expressions, polyphonic modulation and MIDI1 are already /// supported