refactor: rename meta to plugin in table header
This commit is contained in:
committed by
Andrew Phillips (aider)
parent
7bc9dedccd
commit
10cd22ee1a
@@ -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
|
// Update outputs based on the selected hash method
|
||||||
if let Some(hasher) = &mut self.hasher {
|
if let Some(hasher) = &mut self.hasher {
|
||||||
|
|||||||
@@ -236,7 +236,7 @@ impl MetaPlugin for HostnameMetaPlugin {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut metadata = Vec::new();
|
let metadata = Vec::new();
|
||||||
|
|
||||||
// Get the full hostname
|
// Get the full hostname
|
||||||
let full_hostname = self.get_hostname();
|
let full_hostname = self.get_hostname();
|
||||||
|
|||||||
@@ -282,7 +282,7 @@ fn build_meta_plugin_table(meta_plugin_info: &Vec<MetaPluginInfo>) -> Table {
|
|||||||
}
|
}
|
||||||
|
|
||||||
meta_plugin_table.set_titles(row!(
|
meta_plugin_table.set_titles(row!(
|
||||||
b->"Meta Name",
|
b->"Plugin Name",
|
||||||
b->"Options",
|
b->"Options",
|
||||||
b->"Outputs"));
|
b->"Outputs"));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user