From 6a28cbea5a5e40b8c4ec924c31e11f3b90f26c8b Mon Sep 17 00:00:00 2001 From: nprimo Date: Fri, 19 Jul 2024 12:16:39 +0100 Subject: [PATCH] fix(has-city): remove backslash that causes unexpected markdown render behaviour --- subjects/has-city/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/has-city/README.md b/subjects/has-city/README.md index 94fd28055..1ccf5e3ed 100644 --- a/subjects/has-city/README.md +++ b/subjects/has-city/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a function `hasCity` that takes a string called `country` and an array of strings, which are cities of that country, which returns a new function. \ +Create a function `hasCity` that takes a string called `country` and an array of strings, which are cities of that country, which returns a new function. The new function takes a string, called `city`, as a parameter and which determines whether the array contains that string or not.