diff options
author | Colin Okay <colin@cicadas.surf> | 2022-07-08 10:28:59 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-07-08 10:28:59 -0500 |
commit | dd354e5caee002be931501062bf3aaa68f1d63e6 (patch) | |
tree | b94694b16294c532726dbe7a66cb8f12eb365411 /src/core | |
parent | 7bf212df6c3cf0d16b7145ddb18b97f504717230 (diff) |
[formatting] reorganized package exports
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/container.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/container.lisp b/src/core/container.lisp index e5fe251..d332cb8 100644 --- a/src/core/container.lisp +++ b/src/core/container.lisp @@ -54,7 +54,7 @@ (defmethod add-unit ((container container) (unit unit)) "Adds a unit to the end of a container (thus affecting render -order). Makes sure to remove the unit from its current container if +order). Also removes the unit from its current container if necessary." (when (unit-container unit) (drop-unit unit)) |