diff --git a/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua b/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua index a4ad52423..13b92ec50 100644 --- a/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua +++ b/Moose Development/Moose/AI/AI_A2A_Dispatcher.lua @@ -2361,7 +2361,7 @@ do -- AI_A2A_DISPATCHER end --- Set flashing player messages on or off - -- @param #AI_A2G_DISPATCHER self + -- @param #AI_A2A_DISPATCHER self -- @param #boolean onoff Set messages on (true) or off (false) function AI_A2A_DISPATCHER:SetSendMessages( onoff ) self.SetSendPlayerMessages = onoff 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 = {}