about summary refs log tree commit diff
path: root/tvix/cli/src/refscan.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/cli/src/refscan.rs')
-rw-r--r--tvix/cli/src/refscan.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/cli/src/refscan.rs b/tvix/cli/src/refscan.rs
index 739cf77ed2..b391781f92 100644
--- a/tvix/cli/src/refscan.rs
+++ b/tvix/cli/src/refscan.rs
@@ -4,8 +4,8 @@
 //! This is used for determining build references (see
 //! //tvix/eval/docs/build-references.md for more details).
 //!
-//! The scanner itself is an Aho-Corasick automaton, using the `aho-corasick`
-//! crate.
+//! The scanner itself is using the Wu-Manber string-matching algorithm, using
+//! our fork of the `wu-mamber` crate.
 
 use std::collections::BTreeSet;
 use wu_manber::TwoByteWM;