diff options
author | 2023-11-14 13:23:28 +0100 | |
---|---|---|
committer | 2023-11-14 13:23:28 +0100 | |
commit | 280d3736d59b62c4087fe980c187953cc2be83d2 (patch) | |
tree | 0fb8e6b7a5bc5c7f6da71a2302d44866ac632e14 /wgpu/src | |
parent | c2baf18cbff721e25c3103b6235292530b419c54 (diff) | |
download | iced-280d3736d59b62c4087fe980c187953cc2be83d2.tar.gz iced-280d3736d59b62c4087fe980c187953cc2be83d2.tar.bz2 iced-280d3736d59b62c4087fe980c187953cc2be83d2.zip |
Fix broken intra-doc links
Diffstat (limited to 'wgpu/src')
-rw-r--r-- | wgpu/src/primitive/pipeline.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wgpu/src/primitive/pipeline.rs b/wgpu/src/primitive/pipeline.rs index b59aeff1..5dbd6697 100644 --- a/wgpu/src/primitive/pipeline.rs +++ b/wgpu/src/primitive/pipeline.rs @@ -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>, } |