From d23d13a9f1e253218bae971905a4111a832db43a Mon Sep 17 00:00:00 2001 From: Matt Kocubinski Date: Tue, 8 Oct 2024 12:03:11 -0500 Subject: [PATCH] fix comment --- store/v2/root/builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/v2/root/builder.go b/store/v2/root/builder.go index d1319f7020ca..885c41d24484 100644 --- a/store/v2/root/builder.go +++ b/store/v2/root/builder.go @@ -15,7 +15,7 @@ import ( // 2. Configuration and loading // // The Builder interface is used to facilitate this pattern. Namespaces (store keys) are registered -// by calling RegisterNamespace before Build is called. Build is then called with a Config +// by calling RegisterKey before Build is called. Build is then called with a Config // object and a RootStore is returned. Calls to Get may return the `RootStore` if Build // was successful, but that's left up to the implementation. type Builder interface {