diff options
author | Blaž Hrastnik | 2021-05-08 09:26:49 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-05-08 09:26:49 +0000 |
commit | 0fe19ae47243ccb495f498a70767e870614f56e1 (patch) | |
tree | 1764c6e8107c5bdaaa7df8d49948ea84286f5705 /helix-term/src/ui | |
parent | ed827e993f0a0ef8d48eb54cf314facbda15a2ba (diff) |
clippy lint
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/prompt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/prompt.rs b/helix-term/src/ui/prompt.rs index 6534f929..0c2c1d8a 100644 --- a/helix-term/src/ui/prompt.rs +++ b/helix-term/src/ui/prompt.rs @@ -165,7 +165,7 @@ impl Prompt { let text = ui::Text::new(doc.to_string()); let area = Rect::new( - completion_area.x + 0, + completion_area.x, completion_area.y - 3, completion_area.width, 3, |