docs: fix typo in SeqRight docstring

This commit is contained in:
Juan Pablo Romero 2022-09-12 22:43:59 -07:00 committed by Leonardo de Moura
parent ed9b5bcb92
commit 0742fd6fc3

View file

@ -2610,7 +2610,7 @@ class SeqLeft (f : Type u → Type v) : Type (max (u+1) v) where
`Unit → f β` function. -/
seqLeft : {α β : Type u} → f α → (Unit → f β) → f α
/-- The typeclass which supplies the `<*` "seqRight" function. See `Applicative`. -/
/-- The typeclass which supplies the `*>` "seqRight" function. See `Applicative`. -/
class SeqRight (f : Type u → Type v) : Type (max (u+1) v) where
/-- If `x : F α` and `y : F β`, then `x *> y` evaluates `x`, then `y`,
and returns the result of `y`.