mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Apply suggestions from code review
Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com>
This commit is contained in:
parent
fb62f9b45a
commit
c9ef7fc570
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ t.g = function() ... end
|
|||
|
||||
For example, if we define:
|
||||
```lua
|
||||
type RWFactory<A> { build : () -> A }
|
||||
type RWFactory<A> = { build : () -> A }
|
||||
```
|
||||
|
||||
then we do *not* have `RWFactory<Dog>` is a subtype of `RWFactory<Animal>`
|
||||
|
@ -107,7 +107,7 @@ since the build method is read-write, so users can update it:
|
|||
|
||||
but if we define:
|
||||
```lua
|
||||
type ROFactory<A> { get build : () -> A }
|
||||
type ROFactory<A> = { get build : () -> A }
|
||||
```
|
||||
|
||||
then we do have `ROFactory<Dog>` is a subtype of `ROFactory<Animal>`
|
||||
|
|
Loading…
Add table
Reference in a new issue