Skip to content

Commit 815ff79

Browse files
author
Will Bradley
committed
chore: clean up Chapter1.Section2
1 parent cd796c4 commit 815ff79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LogicFormalization/Chapter1/Section2.lean

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Mathlib.Data.Set.Basic
22

3-
set_option autoImplicit true
3+
universe u
44

55
/-! We keep the usual definitions of `Set`, functions, cardinality, products, etc. from Mathlib.
66
We also use maps for families/sequences. -/
@@ -23,6 +23,8 @@ namespace Word
2323
abbrev empty (α: outParam (Type u)): Word α :=
2424
[]
2525

26+
variable {α: Type u}
27+
2628
@[reducible]
2729
def ε: Word α := empty α
2830

@@ -49,5 +51,3 @@ lemma concat_cancel_right (h: a ++ c = b ++ c): a = b :=
4951
List.append_cancel_right h
5052

5153
end Word
52-
53-
-- TODO: posets, least, minimal, lower bound, Zorn's lemma

0 commit comments

Comments
 (0)