diff options
Diffstat (limited to 'mling/src/cli')
| -rw-r--r-- | mling/src/cli/list.rs | 4 |
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, ); |
