about summary refs log tree commit diff
path: root/tvix/cli/src/refscan.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-07-29T22·36+0200
committerclbot <clbot@tvl.fyi>2023-07-31T09·01+0000
commit0dea3086f5ed15191d01e499d55e6edfa73805ee (patch)
tree5646d60f7f26aa86dc2a3f6441515c27c29ce9d4 /tvix/cli/src/refscan.rs
parent92e976b3a94f3d030d0eb13f3899d8147dc99059 (diff)
docs(tvix/cli/refscan): fix comment r/6447
The comment still mentions Aho-Corasick, which isn't correct.

Change-Id: I846a2ca9ea7075c2456ca6ef04a132ff6161227a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8991
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to '')
-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;