fix markdown syntax

This commit is contained in:
tianheg 2022-09-21 10:15:47 +08:00 committed by GitHub
parent 42b7197764
commit 44dc8eb846
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,7 @@ The result of a property access `user.hi` is not a function, but a value of Refe
(user, "hi", true)
```
When parentheses `()` are called on the Reference Type, they receive the full information about the object and its method, and can set the right `this` (`=user` in this case).
When parentheses `()` are called on the Reference Type, they receive the full information about the object and its method, and can set the right `this` (`user` in this case).
Reference type is a special "intermediary" internal type, with the purpose to pass information from dot `.` to calling parentheses `()`.