Typos were found with ``` pip install codespell --upgrade codespell --summary --ignore-words-list enew,forin,fro,happend,hge,ihs,iterm,spred --skip stage0 --check-filenames codespell --summary --ignore-words-list enew,forin,fro,happend,hge,ihs,iterm,spred --skip stage0 --check-filenames --regex '[A-Z][a-z]*' codespell --summary --ignore-words-list enew,forin,fro,happend,hge,ihs,iterm,spred --skip stage0 --check-filenames --regex "\b[a-z']*" ```
7 lines
125 B
Text
7 lines
125 B
Text
structure Something (i: Nat) where
|
|
n1: Nat := 1
|
|
n2: Nat := 1 + i
|
|
|
|
def s : Something 10 := {}
|
|
|
|
example : s.n2 = 11 := rfl
|