From aacf91b934f5dabf12600126ea28dc54accc187c Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Fri, 23 Sep 2022 01:16:39 +0100 Subject: [PATCH] style(loafofbread): add backticks --- subjects/loafofbread/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/loafofbread/README.md b/subjects/loafofbread/README.md index ca3baa8b..b86f9880 100644 --- a/subjects/loafofbread/README.md +++ b/subjects/loafofbread/README.md @@ -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