docs(stars) correct grammar

This commit is contained in:
davhojt 2022-05-30 13:13:33 +02:00 committed by Dav Hojt
parent f283ed983e
commit 2ad55c4c35
1 changed files with 1 additions and 2 deletions

View File

@ -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