Skip to content

Commit c595687

Browse files
authored
Fix typo: ommitted → omitted
1 parent 23ca1f4 commit c595687

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)