Skip to content

Commit

Permalink
Fix Member function names
Browse files Browse the repository at this point in the history
  • Loading branch information
projecteon committed Sep 12, 2022
1 parent 30fde07 commit 16a4886
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datatype/_type.lua
Expand Up @@ -5,8 +5,8 @@ mqtype = nil

---@param id integer # Internal ID number
---@return string # Member name based on an internal ID number (based on 1 through N, not all values will be used)
function mqtype.TypeMember(id) end
function mqtype.Member(id) end

---@param name string
---@return integer # Member internal ID number based on name (will be a number from 1 to N)
function mqtype.TypeMember(name) end
function mqtype.Member(name) end

0 comments on commit 16a4886

Please sign in to comment.