aboutsummaryrefslogtreecommitdiff
path: root/mling/src/cli
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-29 11:29:25 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-29 11:29:25 +0800
commit57f8cf60e190280ab4ae3f85ba05bf4bb6f8acdf (patch)
tree826ac3e22345c103a6a3f13a3a113fe6099c8fb0 /mling/src/cli
parent99c64737fbb78179cd23272739efb0338f05f0e5 (diff)
Fix typo "Unrusted" to "Untrusted" and reflow code formatting
Diffstat (limited to 'mling/src/cli')
-rw-r--r--mling/src/cli/list.rs4
1 files changed, 2 insertions, 2 deletions
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,
);