Skip to content

Commit 221ab21

Browse files
committed
fmt
1 parent 021be87 commit 221ab21

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/completion/base.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use nu_ansi_term::Style;
22
use std::ops::Range;
33

4-
54
/// A span of source code, with positions in bytes
65
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Ord, PartialOrd, Hash)]
76
pub struct Span {

src/menu/columnar_menu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ impl ColumnarMenu {
351351
.reverse()
352352
.prefix(),
353353
self.color.selected_text_style.prefix(),
354-
suggestion.display.as_ref().unwrap_or(&suggestion.value),
354+
suggestion.display.as_ref().unwrap_or(&suggestion.value),
355355
RESET,
356356
self.color.description_style.reverse().prefix(),
357357
self.color.selected_text_style.prefix(),

0 commit comments

Comments
 (0)