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']*" ```
23 lines
254 B
Text
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
|