diff options
author | 2024-03-07 00:19:24 +0100 | |
---|---|---|
committer | 2024-03-07 00:19:24 +0100 | |
commit | 6785a452eea5f6b6f69bac123789245dacbc936e (patch) | |
tree | a10a831b7c250edcdd64dab1914eae65f520521b /widget/src/text_editor.rs | |
parent | 905f2160e6eb7504f52d9bd62c7bfa42c8ec2902 (diff) | |
download | iced-6785a452eea5f6b6f69bac123789245dacbc936e.tar.gz iced-6785a452eea5f6b6f69bac123789245dacbc936e.tar.bz2 iced-6785a452eea5f6b6f69bac123789245dacbc936e.zip |
Fix broken links in documentation
Diffstat (limited to 'widget/src/text_editor.rs')
-rw-r--r-- | widget/src/text_editor.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widget/src/text_editor.rs b/widget/src/text_editor.rs index fabcb744..0212a7a0 100644 --- a/widget/src/text_editor.rs +++ b/widget/src/text_editor.rs @@ -778,16 +778,16 @@ mod platform { } } -/// The possible status of a [`TextInput`]. +/// The possible status of a [`TextEditor`]. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Status { - /// The [`TextInput`] can be interacted with. + /// The [`TextEditor`] can be interacted with. Active, - /// The [`TextInput`] is being hovered. + /// The [`TextEditor`] is being hovered. Hovered, - /// The [`TextInput`] is focused. + /// The [`TextEditor`] is focused. Focused, - /// The [`TextInput`] cannot be interacted with. + /// The [`TextEditor`] cannot be interacted with. Disabled, } @@ -832,7 +832,7 @@ impl<Theme> From<fn(&Theme, Status) -> Appearance> for Style<Theme> { } } -/// The default style of a [`TextInput`]. +/// The default style of a [`TextEditor`]. pub fn default(theme: &Theme, status: Status) -> Appearance { let palette = theme.extended_palette(); |