From bd976ba965a9909c2b8c5116536c3642aeb61a16 Mon Sep 17 00:00:00 2001 From: David Oduneye Date: Sat, 17 Feb 2024 15:33:02 -0500 Subject: [PATCH] string formatting --- backend/src/models/club.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/models/club.go b/backend/src/models/club.go index 64bf85ffd..0fd62ea2a 100644 --- a/backend/src/models/club.go +++ b/backend/src/models/club.go @@ -133,5 +133,5 @@ func (c *Club) Namespace() string { } func (c *Club) EmbeddingString() string { - return c.Name + " " + c.Name + " " + c.Name + " " + c.Name + " " + c.Description + return fmt.Sprintf("%s %s %s %s %s", c.Name, c.Name, c.Name, c.Name, c.Description) }