From bfe28c091b377f059c5a77e27ba1b6a6914175a6 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 13 Jun 2022 00:42:03 +0300 Subject: [PATCH] docs(delete_prefix) correct grammar --- subjects/delete_prefix/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/delete_prefix/README.md b/subjects/delete_prefix/README.md index 1bd8da36..1878c019 100644 --- a/subjects/delete_prefix/README.md +++ b/subjects/delete_prefix/README.md @@ -2,7 +2,7 @@ ### Instructions -Define the function `delete_prefix(prefix, s)` which returns the string slice `s` with the `prefix` removed wrapped in `Some`. If `prefix ` is not a prefix of `s` it returns `None`. +Define the function `delete_prefix` which returns the string slice `s` with the `prefix` removed. It should be wrapped in `Some`. If `prefix` is not a prefix of `s`, then `delete_prefix` returns `None`. ### Expected Function