Update README.md

Small grammatical change.
This commit is contained in:
Pav01Founders 2021-10-14 13:33:47 +01:00 committed by GitHub
parent 06078ec517
commit f92c7dcfae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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