Fix a typo

This commit is contained in:
Denis Gorbachev 2023-09-02 11:51:34 +07:00 committed by GitHub
parent a495fa105f
commit d1860024dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@ Lambda
x => body
```
A lambda represents an inline function. It is written as a variable name, followed by `=>`, followed by a term. Currently, there are no mukti-argument lambdas in Kind, they must be written like `a => b => c => body`.
A lambda represents an inline function. It is written as a variable name, followed by `=>`, followed by a term. Currently, there are no multi-argument lambdas in Kind, they must be written like `a => b => c => body`.
Usually, the type of a lambda argument is infered, but we may optionally anotate its type to help the type-checker. For example: