style(loafofbread): add backticks

This commit is contained in:
Tiago Collot 2022-09-23 01:16:39 +01:00
parent 57ab470299
commit aacf91b934
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@
Write a function `LoafOfBread()` that takes a `string` and returns another one with words of 5 characters and skips the next character followed by newline `\n`.
- If there is a space in the middle of a word it should ignore it and get the next character until getting to a length of 5.
- If the string is less than 5 characters return "Invalid Output\n".
- If there is a space in the middle of a `string` it should ignore it and get the next character until getting to a length of 5.
- If the `string` is less than 5 characters return "Invalid Output\n".
### Expected function