From ed065c569bde44b595ec69ae9aa89a01c35afe6f Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Wed, 1 May 2019 15:34:22 +0200 Subject: [PATCH] Updated Showing the pairings of a specific round (markdown) --- Showing-the-pairings-of-a-specific-round.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Showing-the-pairings-of-a-specific-round.md b/Showing-the-pairings-of-a-specific-round.md index 9cec625..11092c9 100644 --- a/Showing-the-pairings-of-a-specific-round.md +++ b/Showing-the-pairings-of-a-specific-round.md @@ -19,6 +19,6 @@ $pairings = $tournament->getRoundByNo($_GET['round'])->getPairings(); foreach($pairings as $pairing) { $player = $pairing->getPlayer()->getName(); $opponent = $pairing->getOpponent()->getName(); - $color = $pairing->getColor()- >getColor()->getKey(); + $color = $pairing->getColor()->getKey(); echo $player . ' against ' . $opponent . ' using ' . $color; } \ No newline at end of file