Skip to content

Commit

Permalink
typo: add -> app (leanprover#56)
Browse files Browse the repository at this point in the history
The name of the constructor should be `app` rather than `add` according to the context
  • Loading branch information
QDelta committed Mar 1, 2024
1 parent c1dbd1f commit 540d39b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interacting_with_lean.md
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ This feature combined with named arguments is useful for writing patterns. Here
inductive Term where
| var (name : String)
| num (val : Nat)
| add (fn : Term) (arg : Term)
| app (fn : Term) (arg : Term)
| lambda (name : String) (type : Term) (body : Term)
def getBinderName : Term → Option String
Expand Down

0 comments on commit 540d39b

Please sign in to comment.