summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-11 20:28:19 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-11 20:28:19 +0100
commit6f48671042088a9cbde701f83e58667025349307 (patch)
tree29eb62677161ab4f9a88d81afa346c16436e1888
parent7d99e4d07e0fa6b60b802b18312b825c9c09fe29 (diff)
downloadiced-6f48671042088a9cbde701f83e58667025349307.tar.gz
iced-6f48671042088a9cbde701f83e58667025349307.tar.bz2
iced-6f48671042088a9cbde701f83e58667025349307.zip
Fix broken link in `Function` documentation
-rw-r--r--core/src/lib.rs2
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;