refactor: rename meta to plugin in table header

This commit is contained in:
Andrew Phillips
2025-08-27 20:07:29 -03:00
committed by Andrew Phillips (aider)
parent 7bc9dedccd
commit 10cd22ee1a
4 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ impl MetaPlugin for DigestMetaPlugin {
};
}
let mut metadata = Vec::new();
let metadata = Vec::new();
// Update outputs based on the selected hash method
if let Some(hasher) = &mut self.hasher {

View File

@@ -236,7 +236,7 @@ impl MetaPlugin for HostnameMetaPlugin {
};
}
let mut metadata = Vec::new();
let metadata = Vec::new();
// Get the full hostname
let full_hostname = self.get_hostname();

View File

@@ -282,7 +282,7 @@ fn build_meta_plugin_table(meta_plugin_info: &Vec<MetaPluginInfo>) -> Table {
}
meta_plugin_table.set_titles(row!(
b->"Meta Name",
b->"Plugin Name",
b->"Options",
b->"Outputs"));