From 77c1407a450c97170c7e09c2c22da2c4794e8374 Mon Sep 17 00:00:00 2001 From: Leandro Ostera Date: Sat, 4 May 2019 08:32:30 +0200 Subject: [PATCH] Typo in example for `<|` --- bs/src/tablecloth.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bs/src/tablecloth.mli b/bs/src/tablecloth.mli index 69adc7cd..0aeb40c3 100644 --- a/bs/src/tablecloth.mli +++ b/bs/src/tablecloth.mli @@ -15,12 +15,12 @@ Function names that are in camelCase have their documentation written in ReasonM ```ocaml let sqr x = x * x - let result = sqr |< 25 (* 625 *) + let result = sqr <| 25 (* 625 *) ``` ```reason let sqr = (x) => {x * x}; - let result = sqr |< 25 /* 625 */ + let result = sqr <| 25 /* 625 */ ``` *) val ( <| ) : ('a -> 'b) -> 'a -> 'b