Skip to content

Commit

Permalink
chore: fix typo in docstring of mkMVar (#6687)
Browse files Browse the repository at this point in the history
This PR fixes a very small typo in the docstring of `mkMVar` that
misspelled the function it recommends to use instead.
  • Loading branch information
goens authored Jan 18, 2025
1 parent 98e3d6f commit 5e63dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lean/Expr.lean
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def mkFVar (fvarId : FVarId) : Expr :=
/--
`.mvar mvarId` is now the preferred form.
This function is seldom used, metavariables are often created using functions such
as `mkFresheExprMVar` at `MetaM`.
as `mkFreshExprMVar` at `MetaM`.
-/
def mkMVar (mvarId : MVarId) : Expr :=
.mvar mvarId
Expand Down

0 comments on commit 5e63dd2

Please sign in to comment.