Skip to content

Commit

Permalink
php(bob): fix "toOrdinal" to "respondTo"
Browse files Browse the repository at this point in the history
In Bob, the placeholder said "Implement the toOrdinal function" instead of respondTo.
This PR is a very minor one that solves this.
  • Loading branch information
TheTechRobo authored and neenjaw committed Dec 25, 2021
1 parent 0d8083a commit 30f0b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/bob/Bob.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ class Bob
{
public function respondTo(string $str): string
{
throw new \BadMethodCallException("Implement the toOrdinal function");
throw new \BadMethodCallException("Implement the respondTo function");
}
}

0 comments on commit 30f0b65

Please sign in to comment.