From 7e9035a5062150399b2986bad9f7cf37d28d4ccc Mon Sep 17 00:00:00 2001 From: Adil Shibikhanov Date: Tue, 22 Oct 2019 14:38:46 +0600 Subject: [PATCH] Update basicjoin.en.md basicJoin -> BasicJoin --- subjects/basicjoin.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/basicjoin.en.md b/subjects/basicjoin.en.md index ee43d8bb..96173890 100644 --- a/subjects/basicjoin.en.md +++ b/subjects/basicjoin.en.md @@ -7,7 +7,7 @@ Write a function that returns the concatenation of all the `string` of a table o ### Expected function ```go -func basicJoin(strs []string) string { +func BasicJoin(strs []string) string { } ```