Skip to content

Commit

Permalink
chore(set_theory/ordinal_arithmetic): Remove redundant explicit argum…
Browse files Browse the repository at this point in the history
…ent (#11757)
  • Loading branch information
vihdzp committed Feb 1, 2022
1 parent ca2a99d commit 94a700f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/set_theory/ordinal_arithmetic.lean
Expand Up @@ -1237,7 +1237,7 @@ section
variables {S : set ordinal.{u}} (hS : unbounded (<) S)

-- A characterization of unboundedness that's more convenient to our purposes.
private lemma unbounded_aux (hS : unbounded (<) S) (a) : ∃ b, b ∈ S ∧ a ≤ b :=
private lemma unbounded_aux (a) : ∃ b, b ∈ S ∧ a ≤ b :=
let ⟨b, hb, hb'⟩ := hS a in ⟨b, hb, le_of_not_gt hb'⟩

/-- Enumerator function for an unbounded set of ordinals. -/
Expand Down

0 comments on commit 94a700f

Please sign in to comment.