From e65c62fc568a8c052bd875e9a5ec168265f391ba Mon Sep 17 00:00:00 2001 From: Kevin Cui Date: Tue, 15 Sep 2020 21:14:54 +0200 Subject: Cleanup format --- src/renderer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/renderer.rs b/src/renderer.rs index 1192565..17d2baf 100644 --- a/src/renderer.rs +++ b/src/renderer.rs @@ -913,7 +913,7 @@ fn humanize_systemtime(src_time: Option) -> Option { src_time .and_then(|std_time| SystemTime::now().duration_since(std_time).ok()) .and_then(|from_now| Duration::from_std(from_now).ok()) - .map(|duration| { format!("{}", HumanTime::from(-duration))}) + .map(|duration| format!("{}", HumanTime::from(-duration))) } /// Renders an error on the webpage -- cgit v1.2.3