Skip to content

Commit 35e2750

Browse files
committed
Merge branch 'teal-link-fix' into 'master'
Fix dead links to Teal documentation See merge request OpenMW/openmw!5016
2 parents 96565e9 + 47721e7 commit 35e2750

File tree

1 file changed

+2
-2
lines changed
  • docs/source/reference/lua-scripting

1 file changed

+2
-2
lines changed

docs/source/reference/lua-scripting/teal.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ What is Teal?
88
Teal is a typed dialect of Lua. `Teal's Github repository <https://github.com/teal-language/tl>`_.
99

1010
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.
11-
You can find the basics of the syntax and justification for typed Lua in the `Teal tutorial <https://github.com/teal-language/tl/blob/master/docs/tutorial.md>`_.
11+
You can learn the syntax in the `Teal book <https://teal-language.org/book/>`_.
1212

1313
Teal's syntax is mostly the same as Lua, but with additional type declarations and annotations.
1414
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
2020

2121
Create a directory for your project, with a ``tlconfig.lua`` file inside.
2222
All of your scripts (i. e. the ``scripts`` directory) should be within this directory.
23-
``tlconfig.lua`` configures the Teal build system and compiler, see the `complete list here <https://github.com/teal-language/tl/blob/master/docs/compiler_options.md>`_.
23+
``tlconfig.lua`` configures the Teal build system and compiler, see the `complete list here <https://teal-language.org/book/compiler_options.html>`_.
2424

2525
.. note::
2626
You can use ``cyan init`` to set up a directory for a Teal project automatically.

0 commit comments

Comments
 (0)