Skip to content

Commit

Permalink
chore(order/filter/basic): update documentation of filter_upwards
Browse files Browse the repository at this point in the history
  • Loading branch information
kckennylau committed Feb 15, 2019
1 parent 8730619 commit 5109ab6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/order/filter/basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ end filter
namespace tactic.interactive
open tactic interactive

/-- `filter [t1, ⋯, tn]` replaces a goal of the form `s ∈ f.sets`
/-- `filter_upwards [h1, ⋯, hn]` replaces a goal of the form `s ∈ f.sets`
and terms `h1 : t1 ∈ f.sets, ⋯, tn ∈ f.sets` with `∀x, x ∈ t1 → ⋯ → x ∈ tn → x ∈ s`.
`filter [t1, ⋯, tn] e` is a short form for `{ filter [t1, ⋯, tn], exact e }`.
`filter_upwards [h1, ⋯, hn] e` is a short form for `{ filter_upwards [h1, ⋯, hn], exact e }`.
-/
meta def filter_upwards
(s : parse types.pexpr_list)
Expand Down

0 comments on commit 5109ab6

Please sign in to comment.