Skip to content

Commit

Permalink
Fix a typo (exercism#599)
Browse files Browse the repository at this point in the history
* Fix a typo

* Fix a typo

* Fix a typo
  • Loading branch information
br-lemes authored Jan 17, 2024
1 parent ce23791 commit 9fb92f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exercises/concept/language-list/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## 1. Define a function to return an empty language list

- Review the [language referece][ref-arrays]
- Review the [language reference][ref-arrays]
- You can return an empty array

## 2. Modify function to create a list from any number of languages
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/lasagna/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $timer->totalPreparationTime(2)

//# 4. Calculate the total working time in minutes

Define the `Lasgna::totalElapsedTime` function that takes two arguments: the first argument is the number of layers you added to the lasagna, and the second argument is the number of minutes the lasagna has been in the oven. The function should return how many minutes in total you've worked on cooking the lasagna, which is the sum of the preparation time in minutes, and the time in minutes the lasagna has spent in the oven at the moment.
Define the `Lasagna::totalElapsedTime` function that takes two arguments: the first argument is the number of layers you added to the lasagna, and the second argument is the number of minutes the lasagna has been in the oven. The function should return how many minutes in total you've worked on cooking the lasagna, which is the sum of the preparation time in minutes, and the time in minutes the lasagna has spent in the oven at the moment.

```php
<?php
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/sweethearts/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

## 4. Put the initials inside of the heart

- There is a special syntax for [expading variables][string-variables] inside of a string.
- There is a special syntax for [expanding variables][string-variables] inside of a string.
- There is a special syntax for writing [multiline strings][heredoc-syntax] without needing to escape newlines.

[string-type-documentation]: https://www.php.net/manual/en/language.types.string.php
Expand Down

0 comments on commit 9fb92f4

Please sign in to comment.