doc: fix typo

Co-authored-by: Gabriel Ebner <gebner@gebner.org>
This commit is contained in:
Sebastian Ullrich 2021-06-23 16:35:16 +02:00 committed by Leonardo de Moura
parent 9f7af2b77b
commit d1f707a6f0

View file

@ -227,7 +227,7 @@ syntax (name := intro) "intro " notFollowedBy("|") (colGt term:max)* : tactic
syntax (name := intros) "intros " (colGt (ident <|> "_"))* : tactic
/--
`rename t => x` renames the most recent hypothesis whose type matches `t` (which may contain placeholders) to `x`,
or fails if no such hyptothesis could be found. -/
or fails if no such hypothesis could be found. -/
syntax (name := rename) "rename " term " => " ident : tactic
/-- `revert x...` is the inverse of `intro x...`: it moves the given hypotheses into the main goal's target type. -/
syntax (name := revert) "revert " (colGt ident)+ : tactic