From 55529af70a6478ee2f5a29a25861a1cac4190850 Mon Sep 17 00:00:00 2001 From: MSilva95 <53977751+MSilva95@users.noreply.github.com> Date: Tue, 5 Jul 2022 15:39:49 +0100 Subject: [PATCH] small fix --- subjects/printrange/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/printrange/README.md b/subjects/printrange/README.md index 2411100d..5374673b 100644 --- a/subjects/printrange/README.md +++ b/subjects/printrange/README.md @@ -6,8 +6,8 @@ Write a function called `PrintRange` that given a range between two numbers, pri - If the starting number is greater than the ending number, print the numbers in descending order, otherwise in ascending order. - If the number is greater than `9` print only up to `9` -- If the number is less than '0' print only up to '0' -- If both numbers are less than `0` print (`'\n'`), the same applies when both numbers are greater than 9. +- If the number is less than `0` print only up to `0` +- If both numbers are less than `0` print (`'\n'`), the same applies when both numbers are greater than `9`. - The output must be separated by spaces and (`'\n'`) at the end. ### Expected function