From bc89cfa20643715e624c8188ef7182155aac08b5 Mon Sep 17 00:00:00 2001 From: David Finkel Date: Wed, 24 May 2023 17:59:30 -0400 Subject: [PATCH] protocodec: GalaxyGet: fix typo --- protocodec/galaxywrap_v2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocodec/galaxywrap_v2.go b/protocodec/galaxywrap_v2.go index 2c02111c..5529845c 100644 --- a/protocodec/galaxywrap_v2.go +++ b/protocodec/galaxywrap_v2.go @@ -9,7 +9,7 @@ import ( ) // GalaxyGet is a simple wrapper around a Galaxy.Get method-call that takes -// care of constructing the protocodec.CodecV2, etc. (making the interface more idomatic for Go) +// care of constructing the protocodec.CodecV2, etc. (making the interface more idiomatic for Go) func GalaxyGet[C any, T pointerMessage[C]](ctx context.Context, g *galaxycache.Galaxy, key string) (T, error) { pc := NewV2[C, T]() getErr := g.Get(ctx, key, &pc)