diff options
Diffstat (limited to 'tvix/cli/src/refscan.rs')
-rw-r--r-- | tvix/cli/src/refscan.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/cli/src/refscan.rs b/tvix/cli/src/refscan.rs index 739cf77ed26f..b391781f9299 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; |