From 4794004ee5c3bea56eeedf12b2cadc59ac524386 Mon Sep 17 00:00:00 2001 From: Eric Thomas Date: Tue, 7 Sep 2021 10:22:29 -0230 Subject: [PATCH] Fixed capitalization on 'marked out of date' to match convention --- src/download.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download.rs b/src/download.rs index d01abe58..7756eb54 100644 --- a/src/download.rs +++ b/src/download.rs @@ -91,7 +91,7 @@ impl<'a> Warnings<'a> { if !self.ood.is_empty() { let b = color.bold; let e = color.error; - let msg = tr!("marked out of date: "); + let msg = tr!("Marked out of date: "); print!("{} {}", e.paint("::"), b.paint(&msg)); print_indent(Style::new(), msg.len() + 3, 4, cols, " ", &self.ood); }