Skip to content

Commit

Permalink
Merge pull request #51 from ostera/patch-1
Browse files Browse the repository at this point in the history
Typo in example for `<|`
  • Loading branch information
pbiggar authored May 4, 2019
2 parents 48a3b96 + 77c1407 commit e4a5539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bs/src/tablecloth.mli
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e4a5539

Please sign in to comment.