lean4-htt/tests/lean/interactive/hoverBinderUnderscore.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

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