diff options
author | 2025-02-11 20:28:19 +0100 | |
---|---|---|
committer | 2025-02-11 20:28:19 +0100 | |
commit | 6f48671042088a9cbde701f83e58667025349307 (patch) | |
tree | 29eb62677161ab4f9a88d81afa346c16436e1888 | |
parent | 7d99e4d07e0fa6b60b802b18312b825c9c09fe29 (diff) | |
download | iced-6f48671042088a9cbde701f83e58667025349307.tar.gz iced-6f48671042088a9cbde701f83e58667025349307.tar.bz2 iced-6f48671042088a9cbde701f83e58667025349307.zip |
Fix broken link in `Function` documentation
-rw-r--r-- | core/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index cd05cb25..03cc0632 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -122,7 +122,7 @@ pub trait Function<A, B, O> { /// # }; /// ``` /// - /// That's quite a mouthful. [`with`] lets you write: + /// That's quite a mouthful. [`with`](Self::with) lets you write: /// /// ```rust /// # use iced_core::Function; |