aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/attr
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_macros/src/attr')
-rw-r--r--mingling_macros/src/attr/dispatcher_clap.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mingling_macros/src/attr/dispatcher_clap.rs b/mingling_macros/src/attr/dispatcher_clap.rs
index 88117e6..9aa7779 100644
--- a/mingling_macros/src/attr/dispatcher_clap.rs
+++ b/mingling_macros/src/attr/dispatcher_clap.rs
@@ -154,7 +154,7 @@ pub(crate) fn dispatcher_clap_attr(attr: TokenStream, item: TokenStream) -> Toke
let this = ::mingling::this::<#program_path>();
match this.stdout_setting.clap_help_print_behaviour {
- ::mingling::ClapHelpPrintBehaviour::WriteToRenderResult => {
+ ::mingling::config::ClapHelpPrintBehaviour::WriteToRenderResult => {
let mut cmd = <#struct_name as ::clap::CommandFactory>::command()
.color(ColorChoice::Always);
let styled = cmd.render_help();
@@ -162,7 +162,7 @@ pub(crate) fn dispatcher_clap_attr(attr: TokenStream, item: TokenStream) -> Toke
let _ = write!(result, "{}", styled.ansi());
result
}
- ::mingling::ClapHelpPrintBehaviour::PrintDirectly => {
+ ::mingling::config::ClapHelpPrintBehaviour::PrintDirectly => {
let mut command = <#struct_name as ::clap::CommandFactory>::command();
command.print_help().unwrap();
::mingling::RenderResult::new()