From 1ec3d9b1a14c6b39b1bf0b907108a3e313eed955 Mon Sep 17 00:00:00 2001 From: Myk Taylor Date: Fri, 24 Jul 2020 23:29:03 -0700 Subject: [PATCH] add header comments to internal files --- internal/quickfort/build.lua | 4 +++- internal/quickfort/common.lua | 4 +++- internal/quickfort/dig.lua | 4 +++- internal/quickfort/place.lua | 4 +++- internal/quickfort/query.lua | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/internal/quickfort/build.lua b/internal/quickfort/build.lua index 5be299949c..43429aee06 100644 --- a/internal/quickfort/build.lua +++ b/internal/quickfort/build.lua @@ -1,4 +1,6 @@ --- build-related logic for the quickfort script +--[====[ +build-related logic for the quickfort script +]====] local _ENV = mkmodule('hack.scripts.internal.quickfort.build') diff --git a/internal/quickfort/common.lua b/internal/quickfort/common.lua index d7837e6ec9..54be186fc2 100644 --- a/internal/quickfort/common.lua +++ b/internal/quickfort/common.lua @@ -1,4 +1,6 @@ --- common logic for the quickfort modules +--[====[ +common logic for the quickfort script +]====] local _ENV = mkmodule('hack.scripts.internal.quickfort.common') diff --git a/internal/quickfort/dig.lua b/internal/quickfort/dig.lua index 293c0669b2..5b6eaaa6cc 100644 --- a/internal/quickfort/dig.lua +++ b/internal/quickfort/dig.lua @@ -1,4 +1,6 @@ --- dig-related logic for the quickfort script +--[====[ +dig-related logic for the quickfort script +]====] local _ENV = mkmodule('hack.scripts.internal.quickfort.dig') diff --git a/internal/quickfort/place.lua b/internal/quickfort/place.lua index a337f04e1e..3427780c47 100644 --- a/internal/quickfort/place.lua +++ b/internal/quickfort/place.lua @@ -1,4 +1,6 @@ --- place-related logic for the quickfort script +--[====[ +place-related logic for the quickfort script +]====] local _ENV = mkmodule('hack.scripts.internal.quickfort.place') diff --git a/internal/quickfort/query.lua b/internal/quickfort/query.lua index 6395988a06..db8079c81d 100644 --- a/internal/quickfort/query.lua +++ b/internal/quickfort/query.lua @@ -1,4 +1,6 @@ --- query-related logic for the quickfort script +--[====[ +query-related logic for the quickfort script +]====] local _ENV = mkmodule('hack.scripts.internal.quickfort.query')