Skip to content

Commit

Permalink
Update instructions.md
Browse files Browse the repository at this point in the history
use snake case for variable name
  • Loading branch information
evanasse authored and lpil committed Mar 26, 2024
1 parent 35b90af commit 1bc0676
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/bandwagoner/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ let coach = create_coach("Larry Bird", True)
let record = create_stats(58, 24)
let team = create_team("Indiana Pacers", coach, record)
let newCoach = create_coach("Isiah Thomas", True)
replace_coach team newCoach
let new_coach = create_coach("Isiah Thomas", True)
replace_coach team new_coach
// -> Team(
// name: "Indiana Pacers",
// coach: Coach(name: "Isiah Thomas", FormerPlayer = True),
Expand Down

0 comments on commit 1bc0676

Please sign in to comment.