Fixed wording

This commit is contained in:
Mattia Giambirtone 2022-08-17 20:55:00 +02:00
parent bcf30213f5
commit fd90d08688
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ __Note__: Operators can be called as functions too. Just wrap their name in back
```
__Note__: Code the likes of `a.b()` is desugared to `b(a)` if there exists a function `b` whose
signature is compatible with the value of `a` (assuming `a` doesn't have a `b` field, in
signature is compatible with the value of `a` (assuming `a` doesn't have a field named `b`, in
which case the attribute resolution takes precedence)