Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit fd47bdf

Browse files
committed
fix(tactic/choose): typo (#17552)
1 parent 8349090 commit fd47bdf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tactic/choose.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ setup_tactic_parser
129129
/-- `choose a b h h' using hyp` takes an hypothesis `hyp` of the form
130130
`∀ (x : X) (y : Y), ∃ (a : A) (b : B), P x y a b ∧ Q x y a b`
131131
for some `P Q : X → Y → A → B → Prop` and outputs
132-
into context a function `a : X → Y → A`, `b : X → Y → B` and two assumptions:
132+
into context two functions `a : X → Y → A`, `b : X → Y → B` and two assumptions:
133133
`h : ∀ (x : X) (y : Y), P x y (a x y) (b x y)` and
134134
`h' : ∀ (x : X) (y : Y), Q x y (a x y) (b x y)`. It also works with dependent versions.
135135

0 commit comments

Comments
 (0)