Skip to content

Commit cbc0d54

Browse files
authored
Merge branch 'main' into issue_592
2 parents a4dc544 + ea93e04 commit cbc0d54

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
@@ -100,7 +100,7 @@ noManifest = "Resource does not have a manifest"
100100
tableHeader_type = "Type"
101101
tableHeader_kind = "Kind"
102102
tableHeader_version = "Version"
103-
tableheader_capabilities = "Capabilities"
103+
tableHeader_capabilities = "Capabilities"
104104
tableHeader_adapter = "RequireAdapter"
105105
tableHeader_description = "Description"
106106
invalidManifest = "Error in manifest for"

dsc/src/subcommand.rs

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

0 commit comments

Comments
 (0)