docs: Add what to do when string is empty as per review

This commit is contained in:
estlop 2022-06-27 13:13:36 +01:00 committed by eslopfer
parent f5679a6ca6
commit 3097cd47f3
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a function that receives a string and returns a slice with the ASCII values of its characters.
Write a function that receives a string and returns a slice with the ASCII values of its characters. If the string is empty it should return an empty slice.
### Expected function