From eeec4830cabd1f671b63f5561753c10e84a8def2 Mon Sep 17 00:00:00 2001 From: Rex Magana Date: Sat, 4 May 2024 09:09:20 -0700 Subject: [PATCH] "storage" -> "provider" --- crates/runtime/src/text_provider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/runtime/src/text_provider.rs b/crates/runtime/src/text_provider.rs index f014d7f5..78cc476a 100644 --- a/crates/runtime/src/text_provider.rs +++ b/crates/runtime/src/text_provider.rs @@ -14,7 +14,7 @@ use yarnspinner_core::prelude::*; /// By injecting this, we don't need to expose `Dialogue.ExpandSubstitutions` and `Dialogue.ParseMarkup`, since we can apply them internally. pub trait TextProvider: Debug + Send + Sync { /// Creates a shallow clone of this text provider, i.e. a clone that - /// shares the same underlying storage and will thus be perfectly in sync + /// shares the same underlying provider and will thus be perfectly in sync /// with the original instance. fn clone_shallow(&self) -> Box; /// Passes the [`LineId`]s that this [`TextProvider`] should soon provide text for. These are the [`LineId`]s that are contained in the current node and are not required to be actually reached.