diff options
author | 2020-06-05 09:57:18 -0700 | |
---|---|---|
committer | 2020-06-05 09:57:18 -0700 | |
commit | 19c07da86f6481244577f30262d250df25f43c39 (patch) | |
tree | 203b9e95032c9fac854dc5bd8389d015217c7322 /native | |
parent | 98cf9c455a201fec3069f415ce2ddf5e88def242 (diff) | |
download | iced-19c07da86f6481244577f30262d250df25f43c39.tar.gz iced-19c07da86f6481244577f30262d250df25f43c39.tar.bz2 iced-19c07da86f6481244577f30262d250df25f43c39.zip |
fixed formatting
Diffstat (limited to 'native')
-rw-r--r-- | native/src/widget/text_input.rs | 6 |
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) { |