Minor string changes and yearly update

This commit is contained in:
Remy Marquis 2020-03-18 16:46:08 +01:00
parent f4f1def0e0
commit 8b100cb44a
2 changed files with 5 additions and 5 deletions

View file

@ -53,8 +53,8 @@ master_doc = 'index'
# General information about the project.
project = 'Legacy Lua API'
copyright = '2012-2019, ET:Legacy Team'
author = 'ET:Legacy Team'
copyright = '2012-2020, ET: Legacy Team'
author = 'ET: Legacy Team'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -137,7 +137,7 @@ html_theme = 'sphinx_rtd_theme'
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = 'Legacy Lua API v2.75'
# html_title = 'Legacy Lua API v2.76'
# A shorter title for the navigation bar. Default is the same as html_title.
#
@ -264,7 +264,7 @@ latex_elements = {
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'LegacyLuaAPI.tex', 'Legacy Lua API Documentation',
'ET:Legacy Team', 'manual'),
'ET: Legacy Team', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of

View file

@ -2,7 +2,7 @@
Database
========
Both the Legacy mod and the ET:Legacy engine are built-in with `SQLite3 <https://www.sqlite.org/>`_ database support. The engine allows to execute SQL statement directly in console, while the Legacy mod has access through `LuaSQL <https://keplerproject.github.io/luasql/>`_.
Both the Legacy mod and the ET: Legacy engine are built-in with `SQLite3 <https://www.sqlite.org/>`_ database support. The engine allows to execute SQL statement directly in console, while the Legacy mod has access through `LuaSQL <https://keplerproject.github.io/luasql/>`_.
.. tip:: See the `Database <sample.html#database>`__ sample code for an example of basic database usage.