aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/program
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_core/src/program')
-rw-r--r--mingling_core/src/program/collection.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/mingling_core/src/program/collection.rs b/mingling_core/src/program/collection.rs
index c571887..3ff065a 100644
--- a/mingling_core/src/program/collection.rs
+++ b/mingling_core/src/program/collection.rs
@@ -35,8 +35,10 @@ pub trait ProgramCollect {
/// Dispatch the raw user arguments to an Entry.
///
- /// The concrete matching strategy (trie or linear list) is generated by
- /// `gen_program!` and selected by the `dispatch_tree` feature.
+ /// The concrete matching strategy (perfect hash, trie, or linear list) is
+ /// generated by `gen_program!` and selected by the `dispatch_phf` /
+ /// `dispatch_tree` / `dispatch_linear` features (mutually exclusive;
+ /// none = "auto", which picks the best strategy from the command table).
///
/// # Errors
///