Skip to content

Commit 5930915

Browse files
author
Andrew
committed
TableHeaders fix
1 parent e5ff855 commit 5930915

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dsc/locales/en-us.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ noManifest = "Resource does not have a manifest"
9999
tableHeader_type = "Type"
100100
tableHeader_kind = "Kind"
101101
tableHeader_version = "Version"
102-
tableheader_capabilities = "Capabilities"
102+
tableHeader_capabilities = "Capabilities"
103103
tableHeader_adapter = "RequireAdapter"
104104
tableHeader_description = "Description"
105105
invalidManifest = "Error in manifest for"

dsc/src/subcommand.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -578,11 +578,11 @@ fn list_resources(dsc: &mut DscManager, resource_name: Option<&String>, adapter_
578578
let mut write_table = false;
579579
let mut table = Table::new(&[
580580
t!("subcommand.tableHeader_type").to_string().as_ref(),
581-
t!("subcommand.tableheader_kind").to_string().as_ref(),
582-
t!("subcommand.tableheader_version").to_string().as_ref(),
583-
t!("subcommand.tableheader_capabilities").to_string().as_ref(),
584-
t!("subcommand.tableheader_adapter").to_string().as_ref(),
585-
t!("subcommand.tableheader_description").to_string().as_ref(),
581+
t!("subcommand.tableHeader_kind").to_string().as_ref(),
582+
t!("subcommand.tableHeader_version").to_string().as_ref(),
583+
t!("subcommand.tableHeader_capabilities").to_string().as_ref(),
584+
t!("subcommand.tableHeader_adapter").to_string().as_ref(),
585+
t!("subcommand.tableHeader_description").to_string().as_ref(),
586586
]);
587587
if format.is_none() && io::stdout().is_terminal() {
588588
// write as table if format is not specified and interactive

0 commit comments

Comments
 (0)