From 1978d554edc5f3874aff6a2a35212e9c598c7c05 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 24 Jul 2018 20:50:32 +0300 Subject: [PATCH] Update Functor.md --- glossary/Functor.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/glossary/Functor.md b/glossary/Functor.md index b16110bd7..6c1f4b43e 100644 --- a/glossary/Functor.md +++ b/glossary/Functor.md @@ -1,5 +1,5 @@ ### Functor -A Functor is a data type common in functional programming that impliments a method `map`. The `map` method takes a function and applies it to the data in the Functor, returning a new instance of the Functor with the result. - - JavaScript `Array`s are an example of the Functor data type. +A Functor is a data type common in functional programming that implements a `map` method. +The `map` method takes a function and applies it to the data in the Functor, returning a new instance of the Functor with the result. +JavaScript `Array`s are an example of the Functor data type.