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']*" ```
14 lines
314 B
Text
14 lines
314 B
Text
def f : Nat → Bool → Nat :=
|
|
fun _ _ => 5
|
|
--^ textDocument/hover
|
|
--^ textDocument/hover
|
|
|
|
def g : Nat → Bool → Nat :=
|
|
fun (_ _) => 5
|
|
--^ textDocument/hover
|
|
--^ textDocument/hover
|
|
|
|
def h : Nat → Bool → Nat :=
|
|
fun (_ _ : _) => 5
|
|
--^ textDocument/hover
|
|
--^ textDocument/hover
|