From 9e97040d7936ca64c75c1d89a9001302ba5fcf6f Mon Sep 17 00:00:00 2001 From: Augusto Date: Mon, 7 Jun 2021 16:35:41 +0100 Subject: [PATCH] Rephrase instructions of exercise `split` --- subjects/split/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/subjects/split/README.md b/subjects/split/README.md index f98fdc5b..dae5d8f3 100644 --- a/subjects/split/README.md +++ b/subjects/split/README.md @@ -2,9 +2,7 @@ ### Instructions -Write a function that separates the words of a `string` and puts them in a `string` slice. - -The separators are the characters of the separator string given in parameter. +Write a function that receives a string and a separator and returns a `slice of strings` that results of splitting the string `s` by the separator `sep`. ### Expected function