Fix a typo in recap. (#472)

This commit is contained in:
Alexander McCord 2022-05-03 16:12:59 -07:00 committed by GitHub
parent 9bc71c4b13
commit 47a8d28aa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ It is now allowed to define functions on sealed tables that have string indexers
```lua
local a : {[string]: () -> number} = {}
function b.y() return 4 end -- OK
function a.y() return 4 end -- OK
```
Autocomplete will now provide string literal suggestions for singleton types. eg