diff --git a/typescript/translucid/Translucid.js b/typescript/translucid/Translucid.js
index 2f8e50b..557784a 100644
--- a/typescript/translucid/Translucid.js
+++ b/typescript/translucid/Translucid.js
@@ -26,6 +26,7 @@ class Translucid {
         for (let i in object) {
             const classes = object[i].classes || [];
             this.bind(i, object[i].file, classes);
+            //gotta comment this later
             console.log(`Binded room with name ${i} and path ${object[i].file} with classes ${classes}`);
         }
     }
diff --git a/typescript/translucid/Translucid.ts b/typescript/translucid/Translucid.ts
index b5d3819..8d0a6a3 100644
--- a/typescript/translucid/Translucid.ts
+++ b/typescript/translucid/Translucid.ts
@@ -31,6 +31,7 @@ class Translucid {
         for (let i in object){
             const classes = object[i].classes || [];
             this.bind(i,object[i].file,classes);
+            //gotta comment this later
             console.log(`Binded room with name ${i} and path ${object[i].file} with classes ${classes}`)
         }
     }