From 2ad55c4c355b080570f32b43e28b72b68590a966 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 30 May 2022 13:13:33 +0200 Subject: [PATCH] docs(stars) correct grammar --- subjects/stars/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subjects/stars/README.md b/subjects/stars/README.md index e8097d75..84b91f5d 100644 --- a/subjects/stars/README.md +++ b/subjects/stars/README.md @@ -2,8 +2,7 @@ ### Instructions -Write a function named `stars` that takes a number as -parameter and returns a string of stars (asterisks) 2^n long (2 to the nth power). +Create a function named `stars` that takes a `u32` as an argument and returns a `String` of stars (asterisks). The number of stars returned is 2^n (2 to the nth power). ### Expected functions