From f92c7dcfae1e51f72b51a9143aa708846a709049 Mon Sep 17 00:00:00 2001 From: Pav01Founders <92518689+Pav01Founders@users.noreply.github.com> Date: Thu, 14 Oct 2021 13:33:47 +0100 Subject: [PATCH] Update README.md Small grammatical change. --- subjects/map/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/map/README.md b/subjects/map/README.md index 63c0966f..3552927b 100644 --- a/subjects/map/README.md +++ b/subjects/map/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `Map` that, for an `int` slice, applies a function of this type `func(int) bool` on each elements of that slice and returns a slice of all the return values. +Write a function `Map` that, for an `int` slice, applies a function of this type `func(int) bool` on each element of that slice and returns a slice of all the return values. ### Expected function