From 75eac63121d3aa270925272c185cc27f4f13901a Mon Sep 17 00:00:00 2001 From: Raynos Date: Thu, 11 Apr 2013 20:18:56 -0700 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee2e2e5..bf75a4f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ under and some laws it must obey. ### Functor 1. `u.map(function(a) { return a; }))` equals `u` -2. `u.map(function(a) { return f(g(x)); })` equals `u.map(g).map(f)` +2. `u.map(function(x) { return f(g(x)); })` equals `u.map(g).map(f)` #### `map` method