Merge pull request #147 from cxa/master

fix `CCFun.tap` example in doc (thanks to @cxa)
This commit is contained in:
Simon Cruanes 2017-08-28 17:55:05 +02:00 committed by GitHub
commit 14d701f84c

View file

@ -40,7 +40,7 @@ val tap : ('a -> _) -> 'a -> 'a
in a pipeline, for instance:
{[CCArray.(1 -- 10)
|> tap CCArray.shuffle
|> tap CCArray.sort Pervasives.compare
|> tap @@ CCArray.sort Pervasives.compare
]}
*)