From 90c55062bf0e9309d2f17afd5489da829049335e Mon Sep 17 00:00:00 2001 From: scoobybejesus Date: Sun, 11 Oct 2020 12:08:27 -0400 Subject: [PATCH] Remove unneeded parens. --- src/mytui/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mytui/app.rs b/src/mytui/app.rs index f70c1a6..40632fa 100644 --- a/src/mytui/app.rs +++ b/src/mytui/app.rs @@ -55,9 +55,9 @@ impl ListState { 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, - pub to_print_by_title: Vec<(&'a str)>, + pub to_print_by_title: Vec<&'a str>, } impl<'a> PrintWindow<'a> {