From d904e2109ded42c242c41ef7e67145e2c7c7b373 Mon Sep 17 00:00:00 2001 From: David Oduneye <44040421+DOOduneye@users.noreply.github.com> Date: Sat, 17 Feb 2024 15:33:20 -0500 Subject: [PATCH] string formatting (#223) --- 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) }