From 26c0e33ba1261dd5ccf2be39997126cb2d2cdcc3 Mon Sep 17 00:00:00 2001 From: Jack Bailey <81699395+JackBailey@users.noreply.github.com> Date: Thu, 25 Jan 2024 17:29:15 +0000 Subject: [PATCH] Fix typo --- backend/app/api/handlers/v1/v1_ctrl_locations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/api/handlers/v1/v1_ctrl_locations.go b/backend/app/api/handlers/v1/v1_ctrl_locations.go index 3239573..d1c7cc3 100644 --- a/backend/app/api/handlers/v1/v1_ctrl_locations.go +++ b/backend/app/api/handlers/v1/v1_ctrl_locations.go @@ -100,7 +100,7 @@ func (ctrl *V1Controller) GetLocationWithPrice(auth context.Context, GID uuid.UU totalPriceFloat.Quo(totalPriceFloat, big.NewFloat(100)) location.TotalPrice, _ = totalPriceFloat.Float64() - // Add price from child locatinos + // Add price from child locations for _, childLocation := range location.Children { var childLocation, err = ctrl.GetLocationWithPrice(auth, GID, childLocation.ID) if err != nil {