1
0
Fork 0

Fix broken links in docs

This commit is contained in:
Robbert van der Helm 2023-04-24 14:54:20 +02:00
parent 808782df05
commit 4912962551
2 changed files with 5 additions and 4 deletions

View file

@ -40,8 +40,9 @@ pub trait ProcessContext<P: Plugin> {
/// 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

View file

@ -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.
//!