From 9f254dd59d0c8dbd09351cf9f5b9e411e3d71ff8 Mon Sep 17 00:00:00 2001 From: "hemanth.hm" Date: Sat, 17 Oct 2015 11:50:51 +0530 Subject: [PATCH] Format. --- readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index cb02d54..df9be4a 100644 --- a/readme.md +++ b/readme.md @@ -137,9 +137,10 @@ let total1 = (numbers) => combine(add, 0, numbers); let total2 = combine(add, 0); ``` -`total1` lists and uses the parameter `numbers`, so it is not points-free. `total2` is written just by combining functions and values, making no mention of its arguments. It _is_ points-free. +`total1` lists and uses the parameter `numbers`, so it is not points-free. `total2` is written just by combining functions and values, making no mention of its arguments. It __is__ points-free. It is easy to recognize points-free function definitions; they are the ones that contain no '`function`' keywords and no fat arrows. + --- ## Contracts