Skip to content

Commit

Permalink
Fix typo in instructions.md (#569)
Browse files Browse the repository at this point in the history
Instruction no. 5 had a typo in a declared variable
  • Loading branch information
aan-t authored Oct 26, 2023
1 parent 08e179b commit 8cbb74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/language-list/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Assume the list will always have at least one item.

$language_list = language_list("PHP", "Prolog");
// => ["PHP", "Prolog"]
$fisrt = current_language($language_list);
$first = current_language($language_list);
// => "PHP"
```

Expand Down

0 comments on commit 8cbb74b

Please sign in to comment.