From f4b184fd3bfd85b86caaa8b6b99d39b9888081d3 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Wed, 15 Jun 2022 12:27:28 +0100 Subject: [PATCH] Corecting CountStar Subject --- subjects/countstars/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/countstars/README.md b/subjects/countstars/README.md index 7ddc48b1..94093144 100644 --- a/subjects/countstars/README.md +++ b/subjects/countstars/README.md @@ -1,7 +1,7 @@ ## CountStars ### Instructions -Write a function named `CountStar` that makes u fall asleep by counting stars, it takes an integer in the parameter +Write a function named `CountStar` that makes you fall asleep by counting stars, it takes an integer in the parameter - If the number is negative or equal to 0, return "`No star`" - No need to manage overflow. @@ -24,8 +24,8 @@ func main() { ``` ```console -$ go run . | cat -e -1 star...2 star...3 star...4 star...5$ -1 star...2 star...3 star...4$ -No star$ +$ go run . +1 star...2 stars...3 stars...4 stars...5 stars... +1 star...2 stars...3 stars...4 stars... +No star ```