Merge pull request #580 from DenisGorbachev/patch-1

Fix a typo
This commit is contained in:
Yan Mendes 2023-09-10 17:38:20 -03:00 committed by GitHub
commit 0290346ad3
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: