Closed dotnetCarpenter closed 3 years ago
Also removed trailing white-space characters.
:sob: ... Trailing-spaces have a precise semantic in Markdown. They are there for a reason!
Sorry about banishing trailing spaces - I'll have to teach my editor to not annihilate them.. PR commit coming up
Also removed trailing white-space characters.
Before this fix:
compose(map(replace('elvis', 'lou'), arrayToMaybe))(x); // Just('lou costello')
arrayToMaybe
was used as list/array argument toreplace
. MovingarrayToMaybe
to the right of the parenthesis, fixed the example.