diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-03 13:38:21 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-03 13:38:21 +0800 |
| commit | f0c2f456d6762f4219cfc0679660ad526e5faa59 (patch) | |
| tree | 8be06d6e76bba7d27edd6485463605d6a0a5e649 /mingling_core/src/comp.rs | |
| parent | 13b92d768c0ba8d01532d1e434b4ab1ba0cd101c (diff) | |
fix: rename dispatcher_not_found to entry_fallback
Diffstat (limited to 'mingling_core/src/comp.rs')
| -rw-r--r-- | mingling_core/src/comp.rs | 7 |
1 files changed, 3 insertions, 4 deletions
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 = - <P::EntryFallback as crate::Grouped<P>>::member_id(); + let entry_fallback = <P::EntryFallback as crate::Grouped<P>>::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 { |
