From 15f5814f3310a85a6ce52c6ff21a0060e69a79e8 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Wed, 9 Nov 2022 18:44:12 +0000 Subject: [PATCH] docs(modify_letter): remove reference to what to do on edge cases --- subjects/modify_letter/README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/subjects/modify_letter/README.md b/subjects/modify_letter/README.md index 79c1cc37..164bb790 100644 --- a/subjects/modify_letter/README.md +++ b/subjects/modify_letter/README.md @@ -8,10 +8,6 @@ Create a **function** `remove_letter_insensitive` that returns a string without Create a **function** `swap_letter_case` that returns a string swapping the case for the chosen letter. -If there is an empty character in the arguments, the function should return the string as being passed. - -If there is an empty string, it should return an empty string. - ### Expected Functions ```rust