Apply suggestions from code review

Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com>
This commit is contained in:
Alan Jeffrey 2021-10-08 18:10:54 -05:00 committed by GitHub
parent fb62f9b45a
commit c9ef7fc570
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>`