1
0
mirror of https://github.com/scoobybejesus/cryptools.git synced 2025-01-18 03:10:15 +00:00

Remove unneeded parens.

This commit is contained in:
scoobybejesus 2020-10-11 12:08:27 -04:00
parent 9d3564eb7f
commit 90c55062bf

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> {