From 5dcfc6a85ea359c7a3a352e81125846ee0f4d151 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Fri, 20 Sep 2024 06:32:07 -0400 Subject: [PATCH] Update reconcilers/stash.go Co-authored-by: Max Brauer Signed-off-by: Scott Andrews --- reconcilers/stash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reconcilers/stash.go b/reconcilers/stash.go index 8611685..7000a77 100644 --- a/reconcilers/stash.go +++ b/reconcilers/stash.go @@ -57,7 +57,7 @@ func ClearValue(ctx context.Context, key StashKey) interface{} { return value } -// Stasher stores and retrieves values from the stash context. The context must be configured +// Stasher stores and retrieves values from the stash context. The context which gets passed to its methods must be configured // with a stash via WithStash(). The stash is pre-configured for the context within a reconciler. type Stasher[T any] interface { // Key is the stash key used to store and retrieve the value