diff options
author | 2023-11-29 22:46:47 +0100 | |
---|---|---|
committer | 2023-11-29 22:46:47 +0100 | |
commit | 6740c2c5d6b24399dab1343abdfec5daf4b03c98 (patch) | |
tree | c890a5972b31b42d591acbeb17bd05fe4e685f54 /graphics | |
parent | 7def3ee38a3f0f24a331d722b09f325fc9584625 (diff) | |
download | iced-6740c2c5d6b24399dab1343abdfec5daf4b03c98.tar.gz iced-6740c2c5d6b24399dab1343abdfec5daf4b03c98.tar.bz2 iced-6740c2c5d6b24399dab1343abdfec5daf4b03c98.zip |
Fix broken intra-doc links
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/src/compositor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/compositor.rs b/graphics/src/compositor.rs index e0b1e20f..78731a98 100644 --- a/graphics/src/compositor.rs +++ b/graphics/src/compositor.rs @@ -24,7 +24,7 @@ pub trait Compositor: Sized { compatible_window: Option<&W>, ) -> Result<(Self, Self::Renderer), Error>; - /// Creates a [`Renderer`] for the [`Compositor`]. + /// Creates a [`Self::Renderer`] for the [`Compositor`]. fn renderer(&self) -> Self::Renderer; /// Crates a new [`Surface`] for the given window. |