lean4-htt/tests/lean/run/explicitOpenDeclIssue.lean
Jason Yuen facc356a0a
chore: fix spelling errors (#10042)
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']*"
```
2025-08-22 07:23:12 +00:00

23 lines
254 B
Text

namespace Foo
inductive Bar
| a : Bar
| b : Bar
#check Bar.a
end Foo
open Foo (Bar)
#check Foo.Bar.a
#check Bar.a
def isA : Bar → Bool
| Foo.Bar.a => true
| Foo.Bar.b => false
def isB : Bar → Bool
| Bar.a => true
| Bar.b => false