summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar bansheerubber <gary.cactus.email@gmail.com>2020-06-05 09:57:18 -0700
committerLibravatar bansheerubber <gary.cactus.email@gmail.com>2020-06-05 09:57:18 -0700
commit19c07da86f6481244577f30262d250df25f43c39 (patch)
tree203b9e95032c9fac854dc5bd8389d015217c7322 /native
parent98cf9c455a201fec3069f415ce2ddf5e88def242 (diff)
downloadiced-19c07da86f6481244577f30262d250df25f43c39.tar.gz
iced-19c07da86f6481244577f30262d250df25f43c39.tar.bz2
iced-19c07da86f6481244577f30262d250df25f43c39.zip
fixed formatting
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) {