Skip to content

Commit

Permalink
fix(data/list/basic): typo in pariwise_iff
Browse files Browse the repository at this point in the history
  • Loading branch information
spl committed Jul 25, 2018
1 parent f9cf9d3 commit 3eb66d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/list/basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -2935,7 +2935,7 @@ inductive pairwise : list α → Prop
| cons : ∀ {a : α} {l : list α}, (∀ a' ∈ l, R a a') → pairwise l → pairwise (a::l)
attribute [simp] pairwise.nil

run_cmd tactic.mk_iff_of_inductive_prop `list.pairwise `list.pariwise_iff
run_cmd tactic.mk_iff_of_inductive_prop `list.pairwise `list.pairwise_iff

variable {R}
@[simp] theorem pairwise_cons {a : α} {l : list α} :
Expand Down

0 comments on commit 3eb66d5

Please sign in to comment.