From 26b0dc3fd864cd88cb2cd47da567c64150fc7220 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Mon, 2 Feb 2026 15:42:12 -0800 Subject: [PATCH] change Interner to pub(crate) --- crates/fayalite/src/intern.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fayalite/src/intern.rs b/crates/fayalite/src/intern.rs index 4969bcb..97dafe1 100644 --- a/crates/fayalite/src/intern.rs +++ b/crates/fayalite/src/intern.rs @@ -598,7 +598,7 @@ struct InternerState { hasher: DefaultBuildHasher, } -pub struct Interner { +pub(crate) struct Interner { state: Mutex>, }