more descriptive comments

This commit is contained in:
Mikayla Fischler 2022-05-26 19:37:19 -04:00
parent 214f2d9028
commit 51111f707f

View File

@ -205,7 +205,7 @@ comms.modbus_packet = function ()
-- get raw to send
public.raw_sendable = function () return self.raw end
-- get this packet
-- get this packet as a frame with an immutable relation to this object
public.get = function ()
---@class modbus_frame
local frame = {
@ -298,7 +298,7 @@ comms.rplc_packet = function ()
-- get raw to send
public.raw_sendable = function () return self.raw end
-- get this packet
-- get this packet as a frame with an immutable relation to this object
public.get = function ()
---@class rplc_frame
local frame = {
@ -382,7 +382,7 @@ comms.mgmt_packet = function ()
-- get raw to send
public.raw_sendable = function () return self.raw end
-- get this packet
-- get this packet as a frame with an immutable relation to this object
public.get = function ()
---@class mgmt_frame
local frame = {
@ -463,7 +463,7 @@ comms.coord_packet = function ()
-- get raw to send
public.raw_sendable = function () return self.raw end
-- get this packet
-- get this packet as a frame with an immutable relation to this object
public.get = function ()
---@class coord_frame
local frame = {
@ -544,7 +544,7 @@ comms.capi_packet = function ()
-- get raw to send
public.raw_sendable = function () return self.raw end
-- get this packet
-- get this packet as a frame with an immutable relation to this object
public.get = function ()
---@class capi_frame
local frame = {