From f0c2f456d6762f4219cfc0679660ad526e5faa59 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 3 Aug 2026 13:38:21 +0800 Subject: fix: rename dispatcher_not_found to entry_fallback --- mingling_core/src/comp.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'mingling_core/src/comp.rs') diff --git a/mingling_core/src/comp.rs b/mingling_core/src/comp.rs index 952fb87..a4e4f0b 100644 --- a/mingling_core/src/comp.rs +++ b/mingling_core/src/comp.rs @@ -138,11 +138,10 @@ impl CompletionHelper { debug!("dispatch_args_trie OK, member_id = {:?}", any.member_id); trace!("entry type: {}", any.member_id); - let dispatcher_not_found = - >::member_id(); + let entry_fallback = >::member_id(); - if dispatcher_not_found == any.member_id { - debug!("dispatcher_not_found matched"); + if entry_fallback == any.member_id { + debug!("entry_fallback matched"); trace!("begin not Ok"); None } else { -- cgit