1
0
Fork 0

Fix rustdoc link to function

This commit is contained in:
Robbert van der Helm 2022-01-26 12:43:09 +01:00
parent 6edba6555e
commit 41a0f234bd

View file

@ -150,8 +150,9 @@ impl NormalizebleRange<i32> for Range<i32> {
/// Describes a struct containing parameters. The idea is that we can have a normal struct
/// containing [FloatParam] and other parameter types with attributes describing a unique identifier
/// for each parameter. We can then build a mapping from those parameter IDs to the parameters using
/// the [param_map] function. That way we can have easy to work with JUCE-style parameter objects in
/// the plugin without needing to manually register each parameter, like you would in JUCE.
/// the [Params::param_map] function. That way we can have easy to work with JUCE-style parameter
/// objects in the plugin without needing to manually register each parameter, like you would in
/// JUCE.
///
/// # Safety
///