From 0dea3086f5ed15191d01e499d55e6edfa73805ee Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 30 Jul 2023 00:36:21 +0200 Subject: docs(tvix/cli/refscan): fix comment The comment still mentions Aho-Corasick, which isn't correct. Change-Id: I846a2ca9ea7075c2456ca6ef04a132ff6161227a Reviewed-on: https://cl.tvl.fyi/c/depot/+/8991 Autosubmit: flokli Tested-by: BuildkiteCI Reviewed-by: tazjin --- tvix/cli/src/refscan.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tvix') 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; -- cgit 1.4.1