summaryrefslogtreecommitdiffstats
path: root/graphics/src/geometry
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-09 21:08:23 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2023-09-09 21:08:23 +0200
commit419d9374b79b39293ba9a17967c2356d29377d8f (patch)
tree2fd3b5f27ff4ac185a105ddce1a8f26b1b5b276b /graphics/src/geometry
parentf60884f6f8639f75258c264bf4a15591351ef05b (diff)
downloadiced-419d9374b79b39293ba9a17967c2356d29377d8f.tar.gz
iced-419d9374b79b39293ba9a17967c2356d29377d8f.tar.bz2
iced-419d9374b79b39293ba9a17967c2356d29377d8f.zip
Fix outstanding broken intradoc links
Diffstat (limited to 'graphics/src/geometry')
-rw-r--r--graphics/src/geometry/fill.rs4
-rw-r--r--graphics/src/geometry/stroke.rs4
2 files changed, 6 insertions, 2 deletions
diff --git a/graphics/src/geometry/fill.rs b/graphics/src/geometry/fill.rs
index b773c99b..670fbc12 100644
--- a/graphics/src/geometry/fill.rs
+++ b/graphics/src/geometry/fill.rs
@@ -1,4 +1,6 @@
-//! Fill [crate::widget::canvas::Geometry] with a certain style.
+//! Fill [`Geometry`] with a certain style.
+//!
+//! [`Geometry`]: super::Renderer::Geometry
pub use crate::geometry::Style;
use crate::core::Color;
diff --git a/graphics/src/geometry/stroke.rs b/graphics/src/geometry/stroke.rs
index 69a76e1c..aff49ab3 100644
--- a/graphics/src/geometry/stroke.rs
+++ b/graphics/src/geometry/stroke.rs
@@ -1,4 +1,6 @@
-//! Create lines from a [crate::widget::canvas::Path] and assigns them various attributes/styles.
+//! Create lines from a [`Path`] and assigns them various attributes/styles.
+//!
+//! [`Path`]: super::Path
pub use crate::geometry::Style;
use iced_core::Color;