From 03c294354589d6fc53da7e2f897d209bf7dcc611 Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Thu, 14 Apr 2022 08:53:37 +0200 Subject: [PATCH] Nicefy docs --- Moose Development/Moose/AI/AI_A2A_Dispatcher.lua | 2 +- Moose Development/Moose/Utilities/Utils.lua | 14 +++----------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua b/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua index 7d48e4ce5..fe53bfe28 100644 --- a/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua +++ b/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua @@ -3583,7 +3583,7 @@ do -- AI_A2A_DISPATCHER end --- Assigns A2G AI Tasks in relation to the detected items. - -- @param #AI_A2G_DISPATCHER self + -- @param #AI_A2A_DISPATCHER self function AI_A2A_DISPATCHER:Order( DetectedItem ) local detection = self.Detection -- Functional.Detection#DETECTION_AREAS diff --git a/Moose Development/Moose/Utilities/Utils.lua b/Moose Development/Moose/Utilities/Utils.lua index 213e4d1ae..5991c2327 100644 --- a/Moose Development/Moose/Utilities/Utils.lua +++ b/Moose Development/Moose/Utilities/Utils.lua @@ -2370,9 +2370,6 @@ do -- === -- -- ### Author: **applevangelist** --- @module Utils.FiFo --- @image MOOSE.JPG - --- FIFO class. -- @type FIFO @@ -2384,7 +2381,6 @@ do -- @field #table stackbypointer -- @field #table stackbyid -- @extends Core.Base#BASE --- --- -- @type FIFO.IDEntry @@ -2409,7 +2405,7 @@ FIFO = { -- @return #FIFO self function FIFO:New() -- Inherit everything from BASE class. - local self=BASE:Inherit(self, BASE:New()) -- #INTEL + local self=BASE:Inherit(self, BASE:New()) self.pointer = 0 self.counter = 0 self.stackbypointer = {} @@ -2600,7 +2596,7 @@ end ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- do ---- **UTILS** - FiFo Stack. +--- **UTILS** - LiFo Stack. -- -- **Main Features:** -- @@ -2609,9 +2605,6 @@ do -- === -- -- ### Author: **applevangelist** --- @module Utils.LiFo --- @image MOOSE.JPG - --- LIFO class. -- @type LIFO @@ -2623,7 +2616,6 @@ do -- @field #table stackbypointer -- @field #table stackbyid -- @extends Core.Base#BASE --- --- -- @type LIFO.IDEntry @@ -2648,7 +2640,7 @@ LIFO = { -- @return #LIFO self function LIFO:New() -- Inherit everything from BASE class. - local self=BASE:Inherit(self, BASE:New()) -- #INTEL + local self=BASE:Inherit(self, BASE:New()) self.pointer = 0 self.counter = 0 self.stackbypointer = {}