From 57f8cf60e190280ab4ae3f85ba05bf4bb6f8acdf Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 29 Apr 2026 11:29:25 +0800 Subject: Fix typo "Unrusted" to "Untrusted" and reflow code formatting --- mling/src/cli/list.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mling/src/cli/list.rs') diff --git a/mling/src/cli/list.rs b/mling/src/cli/list.rs index a0c68a0..d4088ce 100644 --- a/mling/src/cli/list.rs +++ b/mling/src/cli/list.rs @@ -79,7 +79,7 @@ pub(crate) fn render_installed(prev: ResultInstalledNamespaces) { StateListInstalledOptions::All => { print_list("Trusted".bright_green().bold().to_string(), prev.trusted, r); print_list( - "Unrusted".bright_red().bold().to_string(), + "Untrusted".bright_red().bold().to_string(), prev.untrusted, r, ); @@ -94,7 +94,7 @@ pub(crate) fn render_installed(prev: ResultInstalledNamespaces) { } StateListInstalledOptions::OnlyUntrusted => { print_list( - "Unrusted".bright_red().bold().to_string(), + "Untrusted".bright_red().bold().to_string(), prev.untrusted, r, ); -- cgit