diff --git a/a.2-Showing-the-pairings-of-a-specific-round.md b/a.2-Showing-the-pairings-of-a-specific-round.md index 7362aab..bb679fb 100644 --- a/a.2-Showing-the-pairings-of-a-specific-round.md +++ b/a.2-Showing-the-pairings-of-a-specific-round.md @@ -24,7 +24,7 @@ foreach($pairings as $pairing) { $opponent = $pairing->getOpponent()->getName(); $color = $pairing->getColor()->getKey(); echo $player . ' ' . $pairing->getResult()->getKey() . ' against ' . $opponent . ' using ' . $color . PHP_EOL; - } elseif ($pairing->getResult() == Result::bye) { + } elseif ($pairing->getResult() == Result::wonbye) { echo $player . ' is bye' . PHP_EOL; } elseif ($pairing->getResult() == Result::absent) { echo $player . ' is absent' . PHP_EOL;