chore: fix docstring

This commit is contained in:
Leonardo de Moura 2021-03-07 07:13:32 -08:00
parent 2753822fe7
commit 6d236fbf2e

View file

@ -107,7 +107,7 @@ def isEtaUnassignedMVar (e : Expr) : MetaM Bool := do
```
fun x₁ ... xₙ => ?m x₁ ... xₙ =?= t
t =?= fun x₁ ... xₙ => ?m x₁ ... xₙ
```
This is important because type inference often produces
eta-expanded terms, and without this extra case, we could
introduce counter intuitive behavior.