From 41a0f234bdf5bfaf4dcf54fd615392541ccfba6b Mon Sep 17 00:00:00 2001
From: Robbert van der Helm <mail@robbertvanderhelm.nl>
Date: Wed, 26 Jan 2022 12:43:09 +0100
Subject: [PATCH] Fix rustdoc link to function

---
 nih_plug/src/params.rs | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/nih_plug/src/params.rs b/nih_plug/src/params.rs
index d4fe2bda..0a226966 100644
--- a/nih_plug/src/params.rs
+++ b/nih_plug/src/params.rs
@@ -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
 ///