From 2ec8932696e338682fbba0dd58410fec48c550a3 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Mon, 19 Sep 2022 12:58:27 +0200 Subject: [PATCH] Remove lingering references to restia --- glass/cosmo.lua | 2 +- glass/discount.lua | 2 +- glass/json.lua | 2 +- glass/lua.lua | 2 +- glass/moonhtml.lua | 2 +- glass/raw.lua | 2 +- glass/skooma.lua | 2 +- glass/yaml.lua | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/glass/cosmo.lua b/glass/cosmo.lua index e133906..414f3c4 100644 --- a/glass/cosmo.lua +++ b/glass/cosmo.lua @@ -1,5 +1,5 @@ --- Loader for cosmo templates. --- @module restia.config.cosmo +-- @module glass.cosmo local cosmo = require 'cosmo' local readfile = require 'restia.config.readfile' diff --git a/glass/discount.lua b/glass/discount.lua index d452eba..5b2a109 100644 --- a/glass/discount.lua +++ b/glass/discount.lua @@ -1,5 +1,5 @@ --- Loader for markdown files using lua-discount --- @module restia.config.discount +-- @module glass.discount local discount = require 'discount' diff --git a/glass/json.lua b/glass/json.lua index 9278540..64d593c 100644 --- a/glass/json.lua +++ b/glass/json.lua @@ -1,5 +1,5 @@ --- Loader for JSON-Data using Lua-CJSON --- @module restia.config.json +-- @module glass.json local json = require 'cjson' local readfile = require 'restia.cofnig.readfile' diff --git a/glass/lua.lua b/glass/lua.lua index c42dc4a..1b22ce0 100644 --- a/glass/lua.lua +++ b/glass/lua.lua @@ -1,5 +1,5 @@ --- Loader for Lua files --- @module restia.config.lua +-- @module glass.lua --- Loads and compiles a Lua file and runs it. -- Returns the result of running the Lua file. diff --git a/glass/moonhtml.lua b/glass/moonhtml.lua index 27e3cbd..98b7557 100644 --- a/glass/moonhtml.lua +++ b/glass/moonhtml.lua @@ -1,5 +1,5 @@ --- Loader for MoonHTML files --- @module restia.config.moonhtml +-- @module glass.moonhtml local template = require 'restia.template' diff --git a/glass/raw.lua b/glass/raw.lua index ae2f14b..89d0a06 100644 --- a/glass/raw.lua +++ b/glass/raw.lua @@ -1,5 +1,5 @@ --- Loader for plain files --- @module restia.config.readfile +-- @module glass.readfile --- Loads a normal file as a string. -- @treturn string The content of the file diff --git a/glass/skooma.lua b/glass/skooma.lua index 113ad92..8a75ea7 100644 --- a/glass/skooma.lua +++ b/glass/skooma.lua @@ -1,5 +1,5 @@ --- Loader for Skooma templates --- @module restia.config.skooma +-- @module glass.skooma local skooma = require 'skooma' diff --git a/glass/yaml.lua b/glass/yaml.lua index 155524c..af464ce 100644 --- a/glass/yaml.lua +++ b/glass/yaml.lua @@ -1,5 +1,5 @@ --- Loader for YAML-Data using Lua-CYAML --- @module restia.config.yaml +-- @module glass.yaml local yaml = require 'lyaml' local readfile = require 'restia.config.readfile'