From 3097cd47f3fe305bd0259de072f08d1841a61e38 Mon Sep 17 00:00:00 2001 From: estlop Date: Mon, 27 Jun 2022 13:13:36 +0100 Subject: [PATCH] docs: Add what to do when string is empty as per review --- subjects/ascii/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/ascii/README.md b/subjects/ascii/README.md index 988d89fe..75301600 100644 --- a/subjects/ascii/README.md +++ b/subjects/ascii/README.md @@ -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