diff options
author | 2023-10-27 05:19:35 +0200 | |
---|---|---|
committer | 2023-10-27 05:19:35 +0200 | |
commit | 57f9024e89256ad3f99a3ab19bdc8524c1defa54 (patch) | |
tree | d082b884549cffd37adb78d4f779278fb155bee9 /core/src/text | |
parent | e579d8553088c7d17784e7ff8f6e21360c2bd9ef (diff) | |
download | iced-57f9024e89256ad3f99a3ab19bdc8524c1defa54.tar.gz iced-57f9024e89256ad3f99a3ab19bdc8524c1defa54.tar.bz2 iced-57f9024e89256ad3f99a3ab19bdc8524c1defa54.zip |
Fix intra-doc broken links
Diffstat (limited to 'core/src/text')
-rw-r--r-- | core/src/text/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/text/editor.rs b/core/src/text/editor.rs index ebb0eee2..f3c6e342 100644 --- a/core/src/text/editor.rs +++ b/core/src/text/editor.rs @@ -7,7 +7,7 @@ use std::sync::Arc; /// A component that can be used by widgets to edit multi-line text. pub trait Editor: Sized + Default { - /// The [`Font`] of the [`Editor`]. + /// The font of the [`Editor`]. type Font: Copy + PartialEq + Default; /// Creates a new [`Editor`] laid out with the given text. |