diff --git a/docs/source/reference/lua-scripting/teal.rst b/docs/source/reference/lua-scripting/teal.rst index 7808210807..f2fe5ded4b 100644 --- a/docs/source/reference/lua-scripting/teal.rst +++ b/docs/source/reference/lua-scripting/teal.rst @@ -8,7 +8,7 @@ What is Teal? Teal is a typed dialect of Lua. `Teal's Github repository `_. Teal compiles into Lua, so you can use it in any Lua 5.1+ runtime. If you are familiar with TypeScript, Teal is to Lua what TypeScript is to JavaScript. -You can find the basics of the syntax and justification for typed Lua in the `Teal tutorial `_. +You can learn the syntax in the `Teal book `_. Teal's syntax is mostly the same as Lua, but with additional type declarations and annotations. It will help you catch many mistakes before even running a script, and provide confidence about large code changes. @@ -20,7 +20,7 @@ To compile your ``.tl`` files into ``.lua`` files, install `Cyan, Teal's build s Create a directory for your project, with a ``tlconfig.lua`` file inside. All of your scripts (i. e. the ``scripts`` directory) should be within this directory. -``tlconfig.lua`` configures the Teal build system and compiler, see the `complete list here `_. +``tlconfig.lua`` configures the Teal build system and compiler, see the `complete list here `_. .. note:: You can use ``cyan init`` to set up a directory for a Teal project automatically.