From bfce614f3735f40ff6d6480b0539e2f6df3f8427 Mon Sep 17 00:00:00 2001 From: Luke Massa Date: Tue, 23 Jan 2024 23:53:08 -0500 Subject: [PATCH] Fix comment --- server/core/config/raw/raw_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core/config/raw/raw_test.go b/server/core/config/raw/raw_test.go index 2e7d841c21..fd1886cdbe 100644 --- a/server/core/config/raw/raw_test.go +++ b/server/core/config/raw/raw_test.go @@ -20,7 +20,7 @@ func Int(v int) *int { return &v } // to store v and returns a pointer to it. func String(v string) *string { return &v } -// Helper function to unmarshal strings +// Helper function to unmarshal from strings func unmarshalString(in string, out interface{}) error { decoder := yaml.NewDecoder(strings.NewReader(in)) decoder.KnownFields(true)