From 33599cd9b649502d2571d0f0da8613ad9a7c19b0 Mon Sep 17 00:00:00 2001 From: Andy Weidenbaum Date: Mon, 8 Mar 2021 10:01:52 +1100 Subject: [PATCH] s/Fennel/Lua and add note about &'static str keys --- src/searcher.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/searcher.rs b/src/searcher.rs index 8278a9d..ead18e5 100644 --- a/src/searcher.rs +++ b/src/searcher.rs @@ -42,8 +42,8 @@ impl UserData for Searcher { } } -/// Like `Searcher`, but with `modules` values encoded as `&'static str` to facilitate -/// compile-time includes of Fennel source code. +/// Like `Searcher`, but with `modules` keys and values encoded as `&'static str` +/// to facilitate compile-time includes of Lua source code. struct StaticSearcher { modules: HashMap<&'static str, &'static str>, globals: RegistryKey,