mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Merge remote-tracking branch 'origin/ajeffrey-property-readonly' into ajeffrey-property-readonly
This commit is contained in:
commit
3f75d01401
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 that `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 that `ROFactory<Dog>` is a subtype of `ROFactory<Animal>`
|
||||
|
|
Loading…
Add table
Reference in a new issue