From f855a60c57afcafe74bcd74eb5ae814d3d9d4c2c Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 26 Apr 2022 13:37:53 +0200 Subject: [PATCH] Fix rustdoc link in Plugin::reset() --- src/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin.rs b/src/plugin.rs index 6b1c582b..a7338fd6 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -102,7 +102,7 @@ pub trait Plugin: Default + Send + Sync + 'static { } /// Clear internal state such as filters and envelopes. This is always called after - /// [`initialize()`][Self::initialize(0)], and it may also be called at any other time from the + /// [`initialize()`][Self::initialize()], and it may also be called at any other time from the /// audio thread. You should thus not do any allocations in this function. fn reset(&mut self) {}