diff --git a/quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip01Core/cache/interning/InternedEventStore.kt b/quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip01Core/cache/interning/InterningEventStore.kt similarity index 98% rename from quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip01Core/cache/interning/InternedEventStore.kt rename to quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip01Core/cache/interning/InterningEventStore.kt index 2bea9daae..3e521ee22 100644 --- a/quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip01Core/cache/interning/InternedEventStore.kt +++ b/quartz/src/commonMain/kotlin/com/vitorpamplona/quartz/nip01Core/cache/interning/InterningEventStore.kt @@ -35,7 +35,7 @@ import com.vitorpamplona.quartz.nip01Core.store.IEventStore * * ``` * val sqlite = EventStore(...) - * val cached = InternedEventStore(sqlite) + * val cached = InterningEventStore(sqlite) * val observable = ObservableEventStore(cached) * ``` * @@ -48,7 +48,7 @@ import com.vitorpamplona.quartz.nip01Core.store.IEventStore * The default [interner] is [EventInterner.Default]; pass a fresh * instance for tests or any context that needs isolation. */ -class InternedEventStore( +class InterningEventStore( private val inner: IEventStore, private val interner: EventInterner = EventInterner.Default, ) : IEventStore {