Remove unneeded parens.

This commit is contained in:
scoobybejesus 2020-10-11 12:08:27 -04:00
parent 9d3564eb7f
commit 90c55062bf
1 changed files with 2 additions and 2 deletions

View File

@ -55,9 +55,9 @@ impl<I> ListState<I> {
pub struct PrintWindow<'a> {
pub title: &'a str,
pub should_quit: bool,
pub tasks: ListState<(&'a str)>,
pub tasks: ListState<&'a str>,
pub to_print_by_idx: Vec<usize>,
pub to_print_by_title: Vec<(&'a str)>,
pub to_print_by_title: Vec<&'a str>,
}
impl<'a> PrintWindow<'a> {