1
1
mirror of https://github.com/tweag/nickel.git synced 2024-11-13 09:40:38 +03:00

Update README.md

Fix typos
This commit is contained in:
Yann Hamdaoui 2021-09-14 15:07:14 +02:00 committed by GitHub
parent 8a22d3b28d
commit 5d1b6a840a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,9 @@
# Polymorphism
This example shows the usage of (statically typed) polymorphism in Nickel
through `forall`. Polymorphic functions are the one operating on generic values.
through `forall`. Polymorphic functions are the ones operating on generic values.
Polymorphic types can be nested in Nickel, although it is rarely needed. Note
that they must always be written explcitily: the typechecker never infers
that they must always be written explicitly: the typechecker never infers
polymorphic types for you.
## Run