From 86f550a54564a71098964fa53efedebf9980ef0e Mon Sep 17 00:00:00 2001 From: Augusto Date: Tue, 8 Jun 2021 12:21:09 +0100 Subject: [PATCH] Fix grammar and phrasing of instructions of `join` exercise --- subjects/join/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/join/README.md b/subjects/join/README.md index fdf73457..6fb436ee 100644 --- a/subjects/join/README.md +++ b/subjects/join/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that simulates the behaviour of the `Join` function in Go. This function returns the concatenation of all the strings of a slice of strings **separated** by a separator passed in argument. +Write a function that returns the concatenation of all the `string`s of a slice of `string`s **separated** by the separator passed in the argument `sep`. ### Expected function