docs: Fix spelling

This commit is contained in:
Arseny Kapoulkine 2020-06-11 22:20:32 -07:00
parent 1cd20c92d4
commit ea494050f3
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ Whenever possible, Luau aims to be backwards-compatible with Lua 5.1 and at the
Analysis
========
To make it easier to write correct code, Luau comes with a set of analysis tools that can surface common mistakes. These consist of a linter and a type checker, colloqually known as "script analysis", and can be used from [Roblox Studio](https://developer.roblox.com/en-us/articles/The-Script-Analysis-Tool) or using SECRET TOOL. The linting passes are [described here](lint.md), and the type checking user guide can [be found here](typecheck.md).
To make it easier to write correct code, Luau comes with a set of analysis tools that can surface common mistakes. These consist of a linter and a type checker, colloquially known as "script analysis", and can be used from [Roblox Studio](https://developer.roblox.com/en-us/articles/The-Script-Analysis-Tool) or using SECRET TOOL. The linting passes are [described here](lint.md), and the type checking user guide can [be found here](typecheck.md).
Libraries
=========

View File

@ -1,4 +1,4 @@
Type checking
=============
Luau supports a gradual type system through the use of type annotations and type inference. One someone gets around to writing this, this will have documentation on the details of the type system and examples of common problems/how to deal with them.
Luau supports a gradual type system through the use of type annotations and type inference. Once someone gets around to writing this, this will have documentation on the details of the type system and examples of common problems/how to deal with them.