diff --git a/website/blog/2024-12-24-advent-of-pbt-day-24/AdventOfTheDay.tsx b/website/blog/2024-12-24-advent-of-pbt-day-24/AdventOfTheDay.tsx index d8c73bc1b79..3d03b8e6620 100644 --- a/website/blog/2024-12-24-advent-of-pbt-day-24/AdventOfTheDay.tsx +++ b/website/blog/2024-12-24-advent-of-pbt-day-24/AdventOfTheDay.tsx @@ -75,7 +75,9 @@ function distributeCoins(availableCoins, payslips) { function parser(answer: string): unknown[] | undefined { const lines = answer.split('\n'); if (lines.length !== 2) { - throw new Error('Expected to receive two lines one for the amounts (payslips) to be paid, another one for the coins'); + throw new Error( + 'Expected to receive two lines one for the amounts (payslips) to be paid, another one for the coins', + ); } if (lines[0].at(-1) !== '?') { throw new Error(`First line must end by ?, got: ${lines[0]}.`);