minor refrence error fixed, maybe fouth times the charm...

This commit is contained in:
bluesaxman 2022-02-10 09:08:21 -07:00
parent de60b49f6f
commit da9240e3ff

View File

@ -102,7 +102,7 @@ class container {
addContainer(myContainer) {
if (myContainer instanceof container) {
this.containers.push(container);
this.containers.push(myContainer);
} else {
throw new TypeError("addContainer Method must be given a container object");
}