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']*" ```
8 lines
129 B
Text
8 lines
129 B
Text
instance : HMul Nat Bool Nat where
|
|
hMul
|
|
| x, true => x
|
|
| x, false => 0
|
|
|
|
#check (10:Nat) * true
|
|
|
|
#check fun x => x * 1
|