From 60e7b49e507670464b9f331bf2a8d624b86873e1 Mon Sep 17 00:00:00 2001 From: Varpie Date: Wed, 3 Jul 2024 00:20:17 +0200 Subject: [PATCH] Updated Markdown code block language As noted in !492, a Markdown code block used the F# language instead of Gleam, which results in an inconsistent styling. --- exercises/concept/bandwagoner/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/bandwagoner/.docs/instructions.md b/exercises/concept/bandwagoner/.docs/instructions.md index 7e06f7ee..3e1fcf89 100644 --- a/exercises/concept/bandwagoner/.docs/instructions.md +++ b/exercises/concept/bandwagoner/.docs/instructions.md @@ -79,7 +79,7 @@ replace_coach(team, new_coach) While digging into stats, you're keeping lists of teams and their records. Sometimes, you get things wrong and there are duplicate entries on your list. Implement the `is_same_team` function that takes two teams and returns `True` if they are the same team, otherwise, return `False`: -```fsharp +```gleam let pacers_coach = create_coach("Larry Bird", True) let pacers_stats = create_stats(58, 24) let pacers_team = create_team("Indiana Pacers", pacers_coach, pacers_stats)