Fix broken intra-doc links

This commit is contained in:
Héctor Ramón Jiménez 2023-11-14 13:23:28 +01:00
parent c2baf18cbf
commit 280d3736d5
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
3 changed files with 5 additions and 5 deletions

View file

@ -10,10 +10,10 @@ use std::sync::Arc;
#[derive(Clone, Debug)]
/// A custom primitive which can be used to render primitives associated with a custom pipeline.
pub struct Pipeline {
/// The bounds of the [`Shader`].
/// The bounds of the [`Pipeline`].
pub bounds: Rectangle,
/// The [`custom::Primitive`] to render.
/// The [`Primitive`] to render.
pub primitive: Arc<dyn Primitive>,
}