Fix inconsistent indentation.

This commit is contained in:
Alexander McCord 2022-08-30 05:55:37 -07:00 committed by GitHub
parent fc4a6dc988
commit 5c2811361a
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,7 +61,7 @@ To be able to do this soundly, you must apply type refinements on a variable of
local u = unknown()
if typeof(u) == "string" then
local y: string = u -- no type error
local y: string = u -- no type error
end
```