summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
Diffstat (limited to 'native')
-rw-r--r--native/src/widget/text_input.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs
index c821247f..9d6afffb 100644
--- a/native/src/widget/text_input.rs
+++ b/native/src/widget/text_input.rs
@@ -685,7 +685,7 @@ impl State {
}
/// Moves the [`Cursor`] of the [`TextInput`] to the front of the input text.
- ///
+ ///
/// [`Cursor`]: struct.Cursor.html
/// [`TextInput`]: struct.TextInput.html
pub fn move_cursor_to_front(&mut self) {
@@ -693,7 +693,7 @@ impl State {
}
/// Moves the [`Cursor`] of the [`TextInput`] to the end of the input text.
- ///
+ ///
/// [`Cursor`]: struct.Cursor.html
/// [`TextInput`]: struct.TextInput.html
pub fn move_cursor_to_end(&mut self, value: &String) {
@@ -701,7 +701,7 @@ impl State {
}
/// Moves the [`Cursor`] of the [`TextInput`] to an arbitrary location.
- ///
+ ///
/// [`Cursor`]: struct.Cursor.html
/// [`TextInput`]: struct.TextInput.html
pub fn move_cursor_to(&mut self, position: usize) {