Fix a typo in README.md (#102)

This commit is contained in:
Denis Gorbachev 2023-10-26 22:00:32 +07:00 committed by GitHub
parent 78a20c087c
commit bdef8b58cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ myAdd a b = a + b
```
The `myAdd` function would likely already be inlined since it is so small, but
to guarantee that it is always inlined after two argments are applied, you would
to guarantee that it is always inlined after two arguments are applied, you would
write the following directive:
```