Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Data/Tuple.purs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ instance invariantTuple :: Invariant (Tuple a) where
instance bifunctorTuple :: Bifunctor Tuple where
bimap f g (Tuple x y) = Tuple (f x) (g y)

-- | The `Functor` instance allows functions to transform the contents of a
-- | The `Apply` instance allows functions to transform the contents of a
-- | `Tuple` with the `<*>` operator whenever there is a `Semigroup` instance
-- | for the `fst` component, so:
-- | ```purescript
Expand Down