From c5dd8beb001f233d28c26fb620e84b1bd450b355 Mon Sep 17 00:00:00 2001 From: Malaber Date: Sat, 8 Mar 2025 17:39:51 +0100 Subject: [PATCH] Typo --- app/controllers/tournaments_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/tournaments_controller.rb b/app/controllers/tournaments_controller.rb index a40c6bf..d2a2198 100644 --- a/app/controllers/tournaments_controller.rb +++ b/app/controllers/tournaments_controller.rb @@ -96,7 +96,7 @@ class TournamentsController < ApplicationController private def organize_teams_in_groups(teams) - # each team gets put into a array of teams depending on the group specified in team[:group] + # each team gets put into an array of teams depending on the group specified in team[:group] teams.group_by { |team| team['group'] }.values.map do |group| group.map do |team| find_or_create_team(team)