Skip to content

Commit 95ef4e9

Browse files
authored
Merge pull request #220 from gasi/patch-1
Fix typo: ommitted → omitted
2 parents 23ca1f4 + c595687 commit 95ef4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Data/Function.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ apply f x = f x
5656
infixr 0 apply as $
5757

5858
-- | Applies an argument to a function. This is primarily used as the `(#)`
59-
-- | operator, which allows parentheses to be ommitted in some cases, or as a
59+
-- | operator, which allows parentheses to be omitted in some cases, or as a
6060
-- | natural way to apply a value to a chain of composed functions.
6161
applyFlipped :: forall a b. a -> (a -> b) -> b
6262
applyFlipped x f = f x

0 commit comments

Comments
 (0)