Polishing

This commit is contained in:
Justin van der Leij 2018-01-30 12:45:35 +01:00
parent 58549d6b0a
commit 2d21fe97a5
8 changed files with 136 additions and 109 deletions

View file

@ -21,7 +21,7 @@ end
-- Creates and initializes a new Bag.
-- @param ... The values passed to the populate function
-- @return A new initialized Bag
function Component:initialize(...)
function Component:__initialize(...)
if self.__populate then
local bag = {}
self.__populate(bag, ...)