diff --git a/src/context/process.rs b/src/context/process.rs index 47dd384d..66687aa5 100644 --- a/src/context/process.rs +++ b/src/context/process.rs @@ -40,8 +40,9 @@ pub trait ProcessContext { /// Get information about the current transport position and status. fn transport(&self) -> &Transport; - /// Returns the next note event, if there is one. Use [`NoteEvent::timing()`] to get the event's - /// timing within the buffer. Only available when + /// Returns the next note event, if there is one. Use + /// [`NoteEvent::timing()`][crate::prelude::NoteEvent::timing()] to get the event's timing + /// within the buffer. Only available when /// [`Plugin::MIDI_INPUT`][crate::prelude::Plugin::MIDI_INPUT] is set. /// /// # Usage diff --git a/src/lib.rs b/src/lib.rs index f023f28c..1154ff11 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,8 +31,8 @@ //! [`nih_plug_xtask`](https://github.com/robbert-vdh/nih-plug/tree/master/nih_plug_xtask) for //! instructions on how to use this within your own project. //! - It's also possible to export a standalone application from a plugin using the -//! [`nih_export_standalone()`][prelude::nih_export_standalone()] function. Check that function's -//! documentation to learn how to do this. This requires enabling the `standalone` crate feature. +//! [`nih_export_standalone()`] function. Check that function's documentation to learn how to do +//! this. This requires enabling the `standalone` crate feature. //! - Everything is described in more detail on the [`Plugin`][prelude::Plugin] trait and everything //! linked from there, but a plugin's general lifecycle involves the following function calls. //!