From 86a167eb194e8ab2d33bfebfc806766a8be353d5 Mon Sep 17 00:00:00 2001 From: Robert Mennell Date: Tue, 24 Jul 2018 10:29:35 -0700 Subject: [PATCH] Update Functor.md --- glossary/Functor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glossary/Functor.md b/glossary/Functor.md index 99a4a951a..b16110bd7 100644 --- a/glossary/Functor.md +++ b/glossary/Functor.md @@ -2,4 +2,4 @@ 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 Functor. + JavaScript `Array`s are an example of the Functor data type.